5 lines
120 B
Ruby
5 lines
120 B
Ruby
class ApplicationController < ActionController::API
|
|
def test
|
|
render json: { message: 'This is a test' }
|
|
end
|
|
end
|