mirror of
https://github.com/lingble/chatwoot.git
synced 2026-01-09 05:51:29 +00:00
11 lines
175 B
Ruby
11 lines
175 B
Ruby
module LabelConcern
|
|
def create
|
|
model.update_labels(permitted_params[:labels])
|
|
@labels = model.label_list
|
|
end
|
|
|
|
def index
|
|
@labels = model.label_list
|
|
end
|
|
end
|