mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-20 04:54:57 +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
|