7 lines
124 B
Ruby
7 lines
124 B
Ruby
class Prompts::UsersController < ApplicationController
|
|
def index
|
|
@users = User.all
|
|
render layout: false
|
|
end
|
|
end
|