GithubHelp home page GithubHelp logo

Comments (1)

the-teacher avatar the-teacher commented on August 21, 2024

@Svashta Hello, Mitja!

is it possible to integrate the role management panel with my own skin?

yeah. that is why the solution was split into a few parts. To provide another view you can fork this gem https://github.com/TheRole/the_role_management_panel and rework it completely. You can use any CSS, JS solution to provide required view of management panel. Any changes in View part will not affect backend part of TheRole gem. Feel free to change anything in the view part of the solution.

Also Rails provides a way to define places where App looks for view templates and css/js assets. You can use the original gem https://github.com/TheRole/the_role_management_panel and redefine all view files in your main app.

Please take a look at docs for config.assets.paths and prepend_view_path

MyRailsApp::Application.config.assets.paths.unshift("#{Rails.root}/#{app/assets/}")
if respond_to?(:prepend_view_path)
  prepend_view_path "PATH_TO_ALTERNATIVE_VIEWS"
end

what do i need to do to replace cancancan/rolify with TheRole (devise so of course stay)

My personal practice

I'm pretty sure TheRole is amazing solution for my own purposes. And any another gem will be amazing if you know how to use it.

But, you know, I think, the best solution is the simplest solution. I've seen many huge Rails apps for really huge companies, and you know, usually the best way to manage permissions is just to have a field in a database like this:

User.role = "user" # manager | admin | editor
class User
  def admin?
     role == "admin"
  end

  def editor?
     role == "editor"
  end

  def manager?
     role == "manager"
  end
end

Feel free ask any question and Good luck!

from the_role.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.