"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.usersTabPath = exports.usersDetailsTabPath = exports.usersDetailsPagePath = void 0; var _constants = require("../../../../common/constants"); var _model = require("../store/model"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const usersDetailsPagePath = `${_constants.USERS_PATH}/name/:detailName`; exports.usersDetailsPagePath = usersDetailsPagePath; const usersTabPath = `${_constants.USERS_PATH}/:tabName(${_model.UsersTableType.allUsers}|${_model.UsersTableType.authentications}|${_model.UsersTableType.anomalies}|${_model.UsersTableType.risk}|${_model.UsersTableType.events}|)`; exports.usersTabPath = usersTabPath; const usersDetailsTabPath = `${usersDetailsPagePath}/:tabName(${_model.UsersTableType.authentications}|${_model.UsersTableType.anomalies}|${_model.UsersTableType.events}|${_model.UsersTableType.risk})`; exports.usersDetailsTabPath = usersDetailsTabPath;