feature/share-libs
rb 9 lines 269 Bytes
Raw
1 module Api
2 class WelcomeController < ApplicationController
3 def index
4 @meta_title = 'Welcome to Musik88 API'
5 @meta_description = 'Welcome to Musik88 Application Programming Interface'
6 @meta_url = request.url
7 end
8 end
9 end