nyx/tests/dynamic_fixtures/surface/ruby_rails/users_controller.rb

10 lines
126 B
Ruby
Raw Normal View History

class UsersController < ApplicationController
def index
render json: []
end
def show
render json: {}
end
end