diff --git a/src/dbp-signature-lit-element.js b/src/dbp-signature-lit-element.js index 9e93096a2fc8cf9a9817af662511c818ade1cb61..6c211c8934daa2dd5b08219cf293cfc649a326fc 100644 --- a/src/dbp-signature-lit-element.js +++ b/src/dbp-signature-lit-element.js @@ -193,26 +193,6 @@ export default class DBPSignatureLitElement extends LitElement { return (!this.isLoggedIn() && window.DBPAuthToken !== undefined); } - getOrganization() { - const organizationSelect = this._("dbp-knowledge-base-organization-select"); - - if (organizationSelect) { - const objectText = organizationSelect.getAttribute("data-object"); - - if (objectText !== null) { - return JSON.parse(objectText); - } - } - - return null; - } - - getOrganizationCode() { - const organization = this.getOrganization(); - - return organization !== null ? organization.alternateName : ""; - } - /** * Open Filesink for multiple files */