Last active
May 19, 2021 17:53
-
-
Save carlosramireziii/651062e9fb434543a5865a9fc48aaee8 to your computer and use it in GitHub Desktop.
Revisions
-
carlosramireziii revised this gist
Jul 1, 2017 . No changes.There are no files selected for viewing
-
carlosramireziii revised this gist
Jul 1, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # app/controllers/admin/base_controller.rb # Inherit directly from ActionController::Base rather than ApplicationController to ensure clean separation class Admin::BaseController < ActionController::Base # use an admin-specific layout instead of the main application layout layout "admin" -
carlosramireziii revised this gist
Apr 18, 2017 . 5 changed files with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes.File renamed without changes.File renamed without changes.File renamed without changes. -
carlosramireziii created this gist
Apr 18, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ # app/controllers/admin/base_controller.rb # Inherit directly from ActionController::Base rather than ApplicationController to ensure clean separate class Admin::BaseController < ActionController::Base # use an admin-specific layout instead of the main application layout layout "admin" # all child controllers will automatically enforce access to admins only before_action :require_admin def require_admin # ... end end This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ # app/controllers/admin/articles_controller.rb # Note the namespacing and the inheritance class Admin::ArticlesController < Admin::BaseController def index @articles = Article.all end end This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ <% # app/views/layouts/admin.html.erb %> <!DOCTYPE html> <html> <head> <title>Admin Interface</title> <%= csrf_meta_tags %> <% # Optionally use admin-specific assets here instead of the normal application assets %> <%= stylesheet_link_tag 'admin', media: 'all', 'data-turbolinks-track': 'reload' %> <%= javascript_include_tag 'admin', 'data-turbolinks-track': 'reload' %> </head> <header> <h1>Welcome Admin User</h1> </header> <body> <%= yield %> </body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ # config/initializers/assets.rb # ... # Precompile additional assets. # application.js, application.css, and all non-JS/CSS in app/assets folder are already added. Rails.application.config.assets.precompile += %w( admin.js admin.css ) This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # config/routes.rb Rails.application.routes.draw do namespace :admin do resources :articles end # ... end