12 lines
236 B
Ruby
12 lines
236 B
Ruby
class DocsController < ApplicationController
|
|
skip_before_action :require_login
|
|
|
|
def index
|
|
@doc = {
|
|
name: "sms-pager",
|
|
documentation: "https://bitbucket.org/markamoser/sms-pager"
|
|
}
|
|
respond_with @doc
|
|
end
|
|
end
|