12 lines
160 B
Ruby
12 lines
160 B
Ruby
|
module Locomotive
|
||
|
module Api
|
||
|
class CurrentSiteController < BaseController
|
||
|
|
||
|
def show
|
||
|
respond_with(current_site)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|