Comparing version 0.1.0-beta-48 to 0.1.0-beta-49
@@ -188,2 +188,13 @@ "use strict"; | ||
* @author Igor Ivanovic | ||
* @method Controller#forwardUrl | ||
* | ||
* @description | ||
* Redirect to some url | ||
*/ | ||
forwardUrl: function Controller_forwardUrl(route, params) { | ||
return this._requestApi.forwardUrl(route, params); | ||
}, | ||
/** | ||
* @since 0.0.1 | ||
* @author Igor Ivanovic | ||
* @method Controller#redirect | ||
@@ -190,0 +201,0 @@ * |
@@ -563,3 +563,4 @@ "use strict"; | ||
createUrl: router.createUrl.bind(router), | ||
parsedUrl: core.copy(this.parsedUrl) | ||
parsedUrl: core.copy(this.parsedUrl), | ||
forwardUrl: this.forward.bind(this) | ||
}; | ||
@@ -566,0 +567,0 @@ }, |
@@ -5,3 +5,3 @@ { | ||
"description": "Powerful lightweight mvc framework for nodejs", | ||
"version": "0.1.0-beta-48", | ||
"version": "0.1.0-beta-49", | ||
"dependencies" : { | ||
@@ -8,0 +8,0 @@ "mongoose": "3.8.x", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
129712
4145