From cc1f3a9b694ad80b73107ebc1344ba86b17b891c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Ostrowi=C5=84ski?=
- API keys are just an alternative to password-based - authentication. They are recommended to use for scripts and - other automation instead of plaintext passwords. -
- {!profile.api_keys.length ? ( -- - There are no API keys. Create the first one using - actions below. - -
- ) : ( - [] - )} - {profile.api_keys.map((apiKey) => ( -
- Issued on:
+ API keys are just an alternative to password-based + authentication. They are recommended to use for scripts and + other automation instead of plaintext passwords. +
+ {profile.api_keys && !profile.api_keys.length && ( ++ + There are no API keys. Create the first one using + actions below. + +
+ )} + {profile.api_keys && + profile.api_keys.map((apiKey: ApiKey) => ( +
+ Issued on:{" "}
+
- {isDeleteButtonRender(cap) && (
- {
- ev.preventDefault();
- setCapabilitiesToDelete(cap);
- }}
- >
- |
- )}
- - {cap} - | -
-
- {capabilitiesList[cap] || "(no description)"}
-
-
- {profile.groups && (
-
-
- Got from:
-
- {profile.groups
- .filter((group) =>
- group.capabilities.includes(cap)
- )
- .map((group, index) => (
-
- |
-
- Here is the list of {profile.groups ? "account" : "group"}{" "} - superpowers: -
- {userHasCapabilities(Capability.manageUsers) && ( -+ Here is the list of {profile.groups ? "account" : "group"}{" "} + superpowers: +
+ {userHasCapabilities(Capability.manageUsers) && ( +User login | -Action | -
---|
User login | +Action | +
---|
Continue?
+ {isDeleteButtonRender(cap) && (
+ {
+ ev.preventDefault();
+ setCapabilitiesToDelete(cap);
+ }}
+ >
+ |
+ )}
+ + {cap} + | +
+
+ {capabilitiesList[cap] || "(no description)"}
+
+
+ {profile.groups && (
+
+
+ Got from:
+
+ {profile.groups
+ .filter((group) =>
+ group.capabilities.includes(cap)
+ )
+ .map(
+ (
+ group: Group,
+ index: number
+ ) => (
+
+ |
+