Clearance authentication only for admin dashboards

517 Views Asked by At

I have a rails app which is publicly available but has an admin dashboard that should be accessed only by registered users.

I'm using Thoughtbot Administrate for the dashboard part and I'm trying to implement dashboard authentication with Clearance.

My app does not have any authentication for the public part, so I moved the line include Clearance::Controller from ApplicationController to Admin::ApplicationController and put the sign in/logout buttons in a navigation bar in my dashboard, however, when I click on sign in button, the app shows me an authentication form for my app, not for the dashboard part (I can tell because the styles used are different for both), so my question is, is there a way to have clearance installed only for the admin part, like having it installed only for the admin namespaces?

Clearance part of rake routes is:

         passwords  POST   /passwords(.:format)                     clearance/passwords#create
      new_password  GET    /passwords/new(.:format)                 clearance/passwords#new
           session  POST   /session(.:format)                       clearance/sessions#create
     user_password  POST   /users/:user_id/password(.:format)       clearance/passwords#create
edit_user_password  GET    /users/:user_id/password/edit(.:format)  clearance/passwords#edit
                    PATCH  /users/:user_id/password(.:format)       clearance/passwords#update
                    PUT    /users/:user_id/password(.:format)       clearance/passwords#update
             users  POST   /users(.:format)                         clearance/users#create
           sign_in  GET    /sign_in(.:format)                       clearance/sessions#new
          sign_out  DELETE /sign_out(.:format)                      clearance/sessions#destroy
           sign_up  GET    /sign_up(.:format)                       clearance/users#new

Thanks for the help!

1

There are 1 best solutions below

0
On

It sounds like the only issue is that the Clearance controllers are using your application layout rather than your admin layout. You can override this and it is documented in the README.

Clearance::PasswordsController.layout 'my_passwords_layout'
Clearance::SessionsController.layout 'my_sessions_layout'
Clearance::UsersController.layout 'my_admin_layout'

Whatever you would like. If you want to impact all of the clearance views, I think you could do:

Clearance::BaseController.layout 'my_admin_layout'