Skip to content
Snippets Groups Projects
Commit ae2d0b18 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

fix on old db schema elements

parent b8bafdd4
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -217,11 +217,11 @@ User.prototype.update = function (user) {
return self.callListeners("onreload");
};
User.prototype.setTermsOfUseConsent = function(termsOfUseConsent) {
User.prototype.setTermsOfUseConsent = function (termsOfUseConsent) {
this._termsOfUseConsent = termsOfUseConsent;
};
User.prototype.isTermsOfUseConsent = function() {
User.prototype.isTermsOfUseConsent = function () {
return this._termsOfUseConsent;
};
......
-- there is problem with privileges with new API
update privilege_table set privilege_class_type_db ='OBJECT_PRIVILEGE' where type = 'LAYOUT_MANAGEMENT';
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment