You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
A couple things to make this extension work on 0.9 radiant:
(Actually I never did get it working… if you follow these instructions you can install it, but it breaks the admin tool in 0.9)
If you run into these problems
rake production db:migrate:extensions
Could not load extension from file: page_group_permissions_extension.
#<MissingSourceFile: no such file to load -- application>
open page_group_permissions_extension.rb
change:
require_dependency 'application'
to:
require_dependency 'application_controller'
rake production db:migrate:extensions
rake aborted!
uninitialized constant Admin::PageController
change:
Admin::PageController.module_eval &PageControllerExtensions
to:
Admin::PagesController.module_eval &PageControllerExtensions