14 lines
111 B
Ruby
14 lines
111 B
Ruby
|
|
class UsersController < ApplicationController
|
||
|
|
def create
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
def show
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
def destroy
|
||
|
|
|
||
|
|
end
|
||
|
|
end
|