@@ -35,7 +35,7 @@ func New(wrapper *wrapper.Wrapper) *Action {
return &Action{wrapper}
}
-func (this *Action) Call() bool {
+func (this *Action) Run() bool {
if this.wrapper.R.Method != "POST" {
return false
@@ -120,7 +120,7 @@ func handler(w http.ResponseWriter, r *http.Request) {
Run(func(wrapper *wrapper.Wrapper) bool {
// Actions
action := actions.New(wrapper)
- if action.Call() {
+ if action.Run() {
wrapper.Session.Save()
return true