Files
libr-2/app/controllers/dashboard_controller.rb
2018-06-04 00:35:15 +10:00

8 lines
147 B
Ruby

class DashboardController < ApplicationController
# before_action :authenticate_user!
def index
render json: {msg: 'Hi Tuxué'}
end
end