mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
chore: Allow feature flag parameters in platform API for account creation (#5589)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
@@ -32,12 +32,49 @@ RSpec.describe 'Platform Accounts API', type: :request do
|
||||
end
|
||||
|
||||
it 'creates an account with locale' do
|
||||
InstallationConfig.where(name: 'ACCOUNT_LEVEL_FEATURE_DEFAULTS').first_or_create!(value: [{ 'name' => 'agent_management',
|
||||
'enabled' => true }])
|
||||
post '/platform/api/v1/accounts', params: { name: 'Test Account', locale: 'es' },
|
||||
headers: { api_access_token: platform_app.access_token.token }, as: :json
|
||||
|
||||
expect(response).to have_http_status(:success)
|
||||
|
||||
json_response = JSON.parse(response.body)
|
||||
expect(json_response['name']).to eq('Test Account')
|
||||
expect(json_response['locale']).to eq('es')
|
||||
expect(json_response['enabled_features']).to eq(
|
||||
{
|
||||
'agent_management' => true
|
||||
}
|
||||
)
|
||||
end
|
||||
|
||||
it 'creates an account with feature flags' do
|
||||
InstallationConfig.where(name: 'ACCOUNT_LEVEL_FEATURE_DEFAULTS').first_or_create!(value: [{ 'name' => 'inbox_management',
|
||||
'enabled' => true }])
|
||||
|
||||
post '/platform/api/v1/accounts', params: { name: 'Test Account', enabled_features: %w[feature_ip_lookup feature_help_center] },
|
||||
headers: { api_access_token: platform_app.access_token.token }, as: :json
|
||||
|
||||
json_response = JSON.parse(response.body)
|
||||
expect(json_response['name']).to include('Test Account')
|
||||
expect(json_response['enabled_features']).to eq(
|
||||
{
|
||||
'inbox_management' => true,
|
||||
'ip_lookup' => true,
|
||||
'help_center' => true
|
||||
}
|
||||
)
|
||||
end
|
||||
|
||||
it 'creates an account with limits settings' do
|
||||
post '/platform/api/v1/accounts', params: { name: 'Test Account', limits: { agents: 5, inboxes: 10 } },
|
||||
headers: { api_access_token: platform_app.access_token.token }, as: :json
|
||||
|
||||
expect(response).to have_http_status(:success)
|
||||
expect(response.body).to include('Test Account')
|
||||
expect(response.body).to include('es')
|
||||
expect(response.body).to include('5')
|
||||
expect(response.body).to include('10')
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -105,11 +142,18 @@ RSpec.describe 'Platform Accounts API', type: :request do
|
||||
it 'updates an account when its permissible object' do
|
||||
create(:platform_app_permissible, platform_app: platform_app, permissible: account)
|
||||
|
||||
patch "/platform/api/v1/accounts/#{account.id}", params: { name: 'Test Account' },
|
||||
headers: { api_access_token: platform_app.access_token.token }, as: :json
|
||||
patch "/platform/api/v1/accounts/#{account.id}", params: {
|
||||
name: 'Test Account',
|
||||
enabled_features: %w[feature_ip_lookup feature_help_center],
|
||||
limits: { agents: 5, inboxes: 10 }
|
||||
}, headers: { api_access_token: platform_app.access_token.token }, as: :json
|
||||
|
||||
expect(response).to have_http_status(:success)
|
||||
expect(account.reload.name).to eq('Test Account')
|
||||
expect(account.reload.enabled_features['ip_lookup']).to be(true)
|
||||
expect(account.reload.enabled_features['help_center']).to be(true)
|
||||
expect(account.reload.limits['agents']).to eq(5)
|
||||
expect(account.reload.limits['inboxes']).to eq(10)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user