nyx/tests/dynamic_fixtures/surface/ruby_rails/users_controller.rb
2026-06-05 10:16:30 -05:00

9 lines
126 B
Ruby

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