diff --git a/src/auth/FormElement.ts b/src/auth/FormElement.ts index 6b86f5a4dffa..ba7317eaab98 100644 --- a/src/auth/FormElement.ts +++ b/src/auth/FormElement.ts @@ -373,7 +373,6 @@ export default class GmfAuthForm extends GmfBaseElement { /** * Calls the authentication service changePassword method. - * * @param evt the event */ changePassword(evt: Event): void { @@ -457,7 +456,6 @@ export default class GmfAuthForm extends GmfBaseElement { /** * Calls the authentication service login method. - * * @param evt Event from the form submit action. */ login(evt: Event): void { @@ -503,7 +501,6 @@ export default class GmfAuthForm extends GmfBaseElement { /** * Calls the authentication service logout method. - * * @param evt Event from the form submit action. */ logout(evt: Event): void { @@ -536,7 +533,6 @@ export default class GmfAuthForm extends GmfBaseElement { /** * Calls the authentication service resetPassword method. - * * @param evt Event from the form submit action. */ resetPassword(evt: Event): void { @@ -591,8 +587,7 @@ export default class GmfAuthForm extends GmfBaseElement { } /** - * Set an error notification - * + * Set an error notification. * @param errors List of errors * @param messageType Type of message */ diff --git a/src/auth/service.ts b/src/auth/service.ts index 51e8868e8e8d..0c4b2909fced 100644 --- a/src/auth/service.ts +++ b/src/auth/service.ts @@ -36,7 +36,6 @@ let userTransformer = (user: User) => user; /** * Method defined in the aim to be overridden. - * * @param fn The callback function to apply after login. */ export function setOnSuccessfulLoginFunction(fn: typeof userTransformer): void { @@ -66,14 +65,12 @@ export enum RouteSuffix { export class AuthenticationService { /** * The authentication url without trailing slash. - * * @private */ baseUrl_: string; /** * The user. - * * @private */ user_: User; @@ -81,7 +78,6 @@ export class AuthenticationService { /** * Don't request a new user object from the back-end after * logging out if the logged-in user's role has this role. - * * @private */ noReloadRole_: undefined | gmfOptionsGmfAuthenticationNoReloadRole; @@ -93,7 +89,6 @@ export class AuthenticationService { constructor() { /** * The authentication url without trailing slash. - * * @private */ this.baseUrl_ = null;