|
|
|
@ -14,7 +14,7 @@ cookies.set = function(name = "default", value = "", cookieSetting = {}) { |
|
|
|
|
expires: Setting.cookiesExpires |
|
|
|
|
}; |
|
|
|
|
Object.assign(currentCookieSetting, cookieSetting); |
|
|
|
|
Cookies.set(name, value, currentCookieSetting); |
|
|
|
|
Cookies.set(`admin-${name}`, value, currentCookieSetting); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -22,7 +22,7 @@ cookies.set = function(name = "default", value = "", cookieSetting = {}) { |
|
|
|
|
* @param {String} name cookie name |
|
|
|
|
*/ |
|
|
|
|
cookies.get = function(name = "default") { |
|
|
|
|
return Cookies.get(name); |
|
|
|
|
return Cookies.get(`admin-${name}`); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -37,7 +37,7 @@ cookies.getAll = function() { |
|
|
|
|
* @param {String} name cookie name |
|
|
|
|
*/ |
|
|
|
|
cookies.remove = function(name = "default") { |
|
|
|
|
return Cookies.remove(`${name}`); |
|
|
|
|
return Cookies.remove(`admin-${name}`); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
export default cookies; |
|
|
|
|