added ability to attach a custom domain

This commit is contained in:
shlok007 2017-08-05 01:53:59 +05:30
parent 52cdb41618
commit a612c2e5ea
5 changed files with 70 additions and 6 deletions

View file

@ -135,6 +135,15 @@ describe Admin::ConferencesController do
end
end
end
describe 'GET #custom_domain', blah: true do
it 'render custom domain' do
get :custom_domain, id: conference.short_title
expect(response).to render_template :custom_domain
expect(response).to be_success
end
end
end
shared_examples 'access as organization_admin' do