Log site customization changes. Use a modal to show staff action log details for site customizations.

This commit is contained in:
Neil Lalonde
2013-08-21 10:49:35 -04:00
parent 7f69a58439
commit a95303fcd8
16 changed files with 202 additions and 8 deletions

View File

@ -34,6 +34,11 @@ describe Admin::SiteCustomizationsController do
xhr :post, :create, site_customization: {name: 'my test name'}
::JSON.parse(response.body).should be_present
end
it 'logs the change' do
StaffActionLogger.any_instance.expects(:log_site_customization_change).once
xhr :post, :create, site_customization: {name: 'my test name'}
end
end
end