1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-20 03:17:04 +00:00

start of the vue + mvc example and a simple session binding

Former-commit-id: 994f00952352c93d270ad197cb843f3222fb37c0
This commit is contained in:
Gerasimos (Makis) Maropoulos
2017-12-14 05:56:23 +02:00
parent d72c649441
commit 0b2dcc76f5
12 changed files with 438 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ import (
"github.com/kataras/iris/sessions"
)
var defaultManager = sessions.New(sessions.Config{})
var defaultSessionManager = sessions.New(sessions.Config{})
// SessionController is a simple `Controller` implementation
// which requires a binded session manager in order to give
@@ -22,7 +22,7 @@ type SessionController struct {
// It makes sure that its "Manager" field is filled
// even if the caller didn't provide any sessions manager via the `app.Controller` function.
func (s *SessionController) OnActivate(ca *ControllerActivator) {
if didntBindManually := ca.BindIfNotExists(defaultManager); didntBindManually {
if didntBindManually := ca.BindIfNotExists(defaultSessionManager); didntBindManually {
ca.Router.GetReporter().Add(
`MVC SessionController: couldn't find any "*sessions.Sessions" bindable value to fill the "Manager" field,
therefore this controller is using the default sessions manager instead.