mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-18 20:15:14 +02:00
10 lines
126 B
Ruby
10 lines
126 B
Ruby
|
|
class UsersController < ApplicationController
|
||
|
|
def index
|
||
|
|
render json: []
|
||
|
|
end
|
||
|
|
|
||
|
|
def show
|
||
|
|
render json: {}
|
||
|
|
end
|
||
|
|
end
|