Add a tos getter
This commit is contained in:
parent
ac7108b882
commit
b482d478b4
1 changed files with 4 additions and 2 deletions
|
@ -31,9 +31,11 @@ export class TermsAuth extends BaseRegistrationStage {
|
||||||
return "m.login.terms";
|
return "m.login.terms";
|
||||||
}
|
}
|
||||||
|
|
||||||
// todo: add better parsing logic here, also remember that server admins can
|
|
||||||
// require any sort documents here, even those that are not toc/privacy policies
|
|
||||||
get privacyPolicy() {
|
get privacyPolicy() {
|
||||||
return this._params?.policies["privacy_policy"];
|
return this._params?.policies["privacy_policy"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get termsOfService() {
|
||||||
|
return this._params?.policies["terms_of_service"];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue