mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
6 lines
157 B
Ruby
6 lines
157 B
Ruby
class Api::V1::LabelsController < Api::BaseController
|
|
def index # list all labels in account
|
|
@labels = current_account.all_conversation_tags
|
|
end
|
|
end
|