summaryrefslogtreecommitdiff
path: root/app/controllers/users_controller.rb
blob: 7e8fc9b15bad5ab2e04ad2e29a8da51ef0cebfdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class UsersController < ApplicationController
  
  layout 'admin'
  
  def index
    @users = User.all
  end

  def new
  end

  def create
  end

  def edit
  end

  def update
  end

  def show
  end

  def destroy
  end

end