16 lines
145 B
Ruby
16 lines
145 B
Ruby
class UsersController < ApplicationController
|
|
def new
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
end
|
|
|
|
def destroy
|
|
end
|
|
end
|