21 lines
271 B
Ruby
21 lines
271 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module E621Ws
|
||
|
module Status
|
||
|
class SchemaController < ApplicationController
|
||
|
def index
|
||
|
render("combined")
|
||
|
end
|
||
|
|
||
|
def combined
|
||
|
end
|
||
|
|
||
|
def current
|
||
|
end
|
||
|
|
||
|
def history
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|