Class: NsaPanel::UsersController

Inherits:
ApplicationController show all
Defined in:
app/controllers/nsa_panel/users_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#authenticate

Instance Method Details

#indexObject



5
6
7
# File 'app/controllers/nsa_panel/users_controller.rb', line 5

def index
  @users = NsaPanel.user.all
end

#showObject



9
10
11
# File 'app/controllers/nsa_panel/users_controller.rb', line 9

def show
  @user = NsaPanel.user.find(params[:id])
end