Skip to content

Commit

Permalink
Moved allowAdminChanges to just dev env
Browse files Browse the repository at this point in the history
  • Loading branch information
bymayo committed Feb 5, 2019
1 parent 923be52 commit d6194ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
// Account
'useEmailAsUsername' => true,
'autoLoginAfterAccountActivation' => true,
'allowAdminChanges' => false,
// URL
'omitScriptNameInUrls' => true,
'cpTrigger' => 'admin',
Expand All @@ -45,14 +46,13 @@
'dev' => [
'devMode' => true,
'allowUpdates' => true,
'allowAdminChanges' => true,
'enableTemplateCaching' => false,
'testToEmailAddress' => '[email protected]'
],
'staging' => [
'isSystemLive' => false,
'allowAdminChanges' => false
'isSystemLive' => false
],
'production' => [
'allowAdminChanges' => false
]
];

0 comments on commit d6194ad

Please sign in to comment.