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

10 lines
126 B
Ruby
Raw Permalink Normal View History

2026-06-05 10:16:30 -05:00
class UsersController < ApplicationController
def index
render json: []
end
def show
render json: {}
end
end