First of all sorry for my bad english. I've installed cancan and bigbluebutton_rails, https://github.com/mconf/bigbluebutton_rails. The gem bigbluebutton_rails has some models and controllers, for example has bigbluebutton/servers_controller.rb. This controller has some actions like create, join, authorize, etc. I want that only users with role admin can create. What can I do? I need to put load_and_authorize_resource in bigbluebutton/servers_controller.rb? But it is inside a gem and I think it is not recommended to modify gems code.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
They have a page for integrating with cancan: https://github.com/mconf/bigbluebutton_rails/wiki/How-to%3A-Integrate-with-CanCan But ummm, it hasn't yet been written... So... They also have a page for integrating with Devise: https://github.com/mconf/bigbluebutton_rails/wiki/How-to%3A-Integrate-with-Devise which has been written, and so extrapolating from that the accepted way would be to inherit the How about creating a custom servers controller as follows:
|
|||||
|
|
In ruby you can reopen classes, so put some code in /config/initializers/bigbluebutton.rb that says
|
|||
|
|