2015-09-12 15:37:05 -05:00
|
|
|
class DocsController < ApplicationController
|
2015-10-19 22:05:28 -05:00
|
|
|
skip_before_filter :require_login
|
|
|
|
|
2015-09-12 15:37:05 -05:00
|
|
|
def index
|
2015-09-20 13:26:45 -05:00
|
|
|
@doc = {
|
2015-10-03 19:16:46 -05:00
|
|
|
name: "sms-pager",
|
|
|
|
documentation: "https://bitbucket.org/markamoser/sms-pager"
|
2015-09-20 13:26:45 -05:00
|
|
|
}
|
|
|
|
respond_with @doc
|
2015-09-12 15:37:05 -05:00
|
|
|
end
|
|
|
|
end
|