actions

package
v0.0.0-...-d06a213 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 23, 2019 License: MIT Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ENV = envy.Get("GO_ENV", "development")

ENV is used to help switch settings based on where the application is being run. Default is "development".

Functions

func App

func App() *buffalo.App

App is where all routes and middleware for buffalo should be defined. This is the nerve center of your application.

Routing, middleware, groups, etc... are declared TOP -> DOWN. This means if you add a middleware to `app` *after* declaring a group, that group will NOT have that new middleware. The same is true of resource declarations as well.

It also means that routes are checked in the order they are declared. `ServeFiles` is a CATCH-ALL route, so it should always be placed last in the route declarations, as it will prevent routes declared after it to never be called.

func AuthCallback

func AuthCallback(c buffalo.Context) error

func AuthDestroy

func AuthDestroy(c buffalo.Context) error

func Authorize

func Authorize(next buffalo.Handler) buffalo.Handler

func CommentsCreate

func CommentsCreate(c buffalo.Context) error

CommentsCreate default implementation.

func CommentsDelete

func CommentsDelete(c buffalo.Context) error

func CommentsEditGet

func CommentsEditGet(c buffalo.Context) error

func CommentsEditPost

func CommentsEditPost(c buffalo.Context) error

func HomeHandler

func HomeHandler(c buffalo.Context) error

HomeHandler is a default handler to serve up a home page.

func PostsDetail

func PostsDetail(c buffalo.Context) error

PostsDetail default implementation.

func PostsIndex

func PostsIndex(c buffalo.Context) error

PostsIndex default implementation.

func SetCurrentUser

func SetCurrentUser(next buffalo.Handler) buffalo.Handler

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL