11 lines
214 B
Ruby
11 lines
214 B
Ruby
class DocsController < ApplicationController
|
|
def index
|
|
doc = {
|
|
name: "sms-pager-api",
|
|
documentation: "https://bitbucket.org/markamoser/sms-pager-api"
|
|
}.to_json
|
|
|
|
render json: doc
|
|
end
|
|
end
|