10 lines
208 B
Ruby
10 lines
208 B
Ruby
module Enterprise::Api::V1::Accounts::InboxesController
|
|
def inbox_attributes
|
|
super + ee_inbox_attributes
|
|
end
|
|
|
|
def ee_inbox_attributes
|
|
[auto_assignment_config: [:max_assignment_limit]]
|
|
end
|
|
end
|