Documentation ¶
Index ¶
- Variables
- func App() *buffalo.App
- func HomeHandler(c buffalo.Context) error
- type TodoesResource
- func (v TodoesResource) Create(c buffalo.Context) error
- func (v TodoesResource) Destroy(c buffalo.Context) error
- func (v TodoesResource) Edit(c buffalo.Context) error
- func (v TodoesResource) List(c buffalo.Context) error
- func (v TodoesResource) New(c buffalo.Context) error
- func (v TodoesResource) Show(c buffalo.Context) error
- func (v TodoesResource) Update(c buffalo.Context) error
Constants ¶
This section is empty.
Variables ¶
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".
var T *i18n.Translator
Functions ¶
func 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 HomeHandler ¶
HomeHandler is a default handler to serve up a home page.
Types ¶
type TodoesResource ¶
TodoesResource is the resource for the Todo model
func (TodoesResource) Create ¶
func (v TodoesResource) Create(c buffalo.Context) error
Create adds a Todo to the DB. This function is mapped to the path POST /todoes
func (TodoesResource) Destroy ¶
func (v TodoesResource) Destroy(c buffalo.Context) error
Destroy deletes a Todo from the DB. This function is mapped to the path DELETE /todoes/{todo_id}
func (TodoesResource) Edit ¶
func (v TodoesResource) Edit(c buffalo.Context) error
Edit renders a edit form for a Todo. This function is mapped to the path GET /todoes/{todo_id}/edit
func (TodoesResource) List ¶
func (v TodoesResource) List(c buffalo.Context) error
List gets all Todoes. This function is mapped to the path GET /todoes
func (TodoesResource) New ¶
func (v TodoesResource) New(c buffalo.Context) error
New renders the form for creating a new Todo. This function is mapped to the path GET /todoes/new