Adds SFRA 6.0
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
'use strict';
|
||||
|
||||
function Response() {
|
||||
this.base = {};
|
||||
}
|
||||
|
||||
Response.prototype = {
|
||||
render: function render() {},
|
||||
json: function json() {},
|
||||
redirect: function redirect(url) {
|
||||
this.redirectUrl = url;
|
||||
},
|
||||
setViewData: function () {}
|
||||
};
|
||||
|
||||
module.exports = Response;
|
Reference in New Issue
Block a user