summaryrefslogtreecommitdiff
path: root/app/controllers/users_controller.rb
blob: 16604fc4a37905cd513e427549d98a1baad6f29a (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
class UsersController < ApplicationController
  
  layout 'admin'
  
  def index
  end

  def new
  end

  def create
  end

  def edit
  end

  def update
  end

  def show
  end

  def destroy
  end

end