6 lines
95 B
Ruby
Executable File
6 lines
95 B
Ruby
Executable File
class UsersController < ApplicationController
|
|
def index
|
|
@users = User.all
|
|
end
|
|
end
|