class Authority::Authorize::CreateEndpoint
- Authority::Authorize::CreateEndpoint
- Reference
- Object
Included Modules
- Authority::SessionHelper
- Azu::Endpoint(Authority::Authorize::NewRequest, Azu::Response)
Defined in:
endpoints/authorize/create_endpoint.crClass Method Summary
- .connect(path : Router::Path)
- .delete(path : Router::Path)
- .get(path : Router::Path)
- .head(path : Router::Path)
- .helper_path_name
- .options(path : Router::Path)
- .patch(path : Router::Path)
- .path(**params)
- .post(path : Router::Path)
- .put(path : Router::Path)
- .trace(path : Router::Path)
Instance Method Summary
-
#call : Response
When we include Endpoint module, we make our object compliant with Azu Endpoints by implementing the #call, which is a method that accepts no arguments
- #current_session
- #forward_url
- #new_request : Request
- #signin(redirect_url = forward_url)
Class Method Detail
Instance Method Detail
def call : Response
#
Description copied from module Azu::Endpoint(Authority::Authorize::NewRequest, Azu::Response)
When we include Endpoint module, we make our object compliant with Azu Endpoints by implementing the #call, which is a method that accepts no arguments
def call : IndexPage
IndexPage.new
end