{% extends "internal_base.html" %} {% block meta %} Cheriff · User · {{ user_account['email'] }} {% end %} {% block style %} {% try %} {% module Template("webpack_templates/cheriff-styles.html") %} {% except %} {% end %} {% end %} {% block content %}

User Account - {{ user_account['email'] }}

Created {{user_account['created_at'].date().isoformat()}}
Auth token {{ admin_token }}
Organization {{ organization_name }}
{% if len(workspaces) == 0 %}
No workspaces
{% elif len(workspaces) and (current_user['email'] in allowed_loginas_users) %}
{% module xsrf_form_html() %}
{% end %}

Status

{% if user_account.confirmed_account %}

User is activated

{% module xsrf_form_html() %}

⚠️ ⚡ Beware: if you disable this user, all their tokens will be refreshed. This can cause downtimes in case the customer is using any of these tokens for production. Please, make sure the customer knows the dangers of this and use the "Token restoration" form in the workspace administration page if you need to restore an old token.

{% if has_uniquely_shared_datasources %}

⚠️ Beware: this user has shared datasources with workspaces owned by other users.

Unshare shared datasources.

{% end %}
{% else %}

User is deactivated

{% module xsrf_form_html() %}

{% end %}

Flags

{% module xsrf_form_html() %} {% if user_account.enabled_sessionrewind or user_account.enabled_fullstory %}

SessionRewind is enabled

{% else %}

SessionRewind is deactivated

{% end %}

Change password

In case the user uses email+password authentication,
you can change the password from Auth0

Change max workspaces

{% module xsrf_form_html() %}

Workspaces ({{len(workspaces)}})

{% for w in sorted(workspaces, key = lambda w: w['role'], reverse=True) %} {% set wksp_token = w.get('token', '') %} {% set token_id = "token-" + w['id'] %} {% end %}
Name Role Token Actions
{{w['name']}} {{w['role']}} {{wksp_token}}

Feature Flags

{% for flag, value, is_override in user_feature_flags %} {% end %}
Name Status Actions
{{ flag['name'] }}
{{ flag['description'] }}
{% if value %} Activated{% if is_override %}*{% end %} {% else %} Deactivated{% if is_override %}*{% end %} {% end %}
{% module xsrf_form_html() %} {% if value %} {% else %} {% end %}
{% if is_override %}
{% module xsrf_form_html() %}
{% end %}

Integrations

{% for integration in integrations %} {% end %}
Type Id Date created Operations
{{ integration.integration_type }} {{ integration.integration_id }} {{ integration.date_created.isoformat() }}
{% module xsrf_form_html() %}

Marketing campaigns

{% for name, viewed in user_campaigns %} {% end %}
Name Status Actions
{{ name }} {% if viewed %} Viewed {% else %} - {% end %}
{% module xsrf_form_html() %} {% if viewed %} {% else %} {% end %}
{% include "partials/_loginas_script.html" %} {% end %}