1
0
Fork 0
find-us-lunch/app/controllers/users_controller.rb

9 lines
108 B
Ruby

class UsersController < ApplicationController
def index
@users = User.all
end
def show
end
end