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