class Graphql::Dashboard::StaticsController

def show

def show
  expires_in 1.year, public: true
  if (filepath = STATICS[params[:id]])
    render file: filepath
  else
    head :not_found
  end
end