4 lines
181 B
Ruby
4 lines
181 B
Ruby
class PasswordsController < Devise::PasswordsController
|
|
layout "application", :only => [:new]
|
|
before_filter -> { @css_framework = :bootstrap }, only: [:new, :create, :edit]
|
|
end
|