Description

This service allows to get tenant login options.

Hierarchy

Constructors

Methods

  • Removes tenant's login option.

    Returns

    Returns promise object that is resolved with the IResult of null.

    Example


    const tenantLoginOptionId: string = 'uniqueTenantLoginOptionId';

    (async () => {
    const {data, res} = await tenantLoginOptionsService.delete(tenantLoginOptionId);
    })();

    Parameters

    • entityOrId: string | IIdentified

      Tenant's login option's id or tenant's login option object.

    Returns Promise<IResult<null>>