2020-03-09 17:57:10 +00:00
|
|
|
class Api::V1::Accounts::LabelsController < Api::BaseController
|
|
|
|
# list all labels in account
|
|
|
|
def index
|
2019-08-14 09:48:44 +00:00
|
|
|
@labels = current_account.all_conversation_tags
|
|
|
|
end
|
2020-02-02 10:59:18 +00:00
|
|
|
|
|
|
|
def most_used
|
|
|
|
@labels = ActsAsTaggableOn::Tag.most_used(params[:count] || 10)
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|