From 9fc6cc96346a0a5ef4a997741d9b3b0f9a9aabbe Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Mon, 10 Jan 2022 14:16:47 +0100 Subject: [PATCH] Add generic type and description when its missing Signed-off-by: Louis Chemineau --- apps/comments/src/services/GetComments.js | 8 +++--- apps/dav/src/service/CalendarService.js | 4 +-- apps/files/js/filelist.js | 8 +++--- apps/files/src/services/FileInfo.js | 2 +- apps/files_external/js/statusmanager.js | 4 +-- apps/files_sharing/js/public.js | 12 ++++----- apps/settings/js/settings/personalInfo.js | 2 +- .../src/service/WebAuthnRegistrationSerice.js | 6 ++--- apps/settings/src/store/users.js | 9 +++---- apps/systemtags/src/systemtagsfilelist.js | 2 +- apps/systemtags/src/systemtagsinfoview.js | 2 +- .../src/service/PrintService.js | 2 +- apps/user_ldap/js/wizard/wizardTabAdvanced.js | 6 ++--- .../js/wizard/wizardTabElementary.js | 8 +++--- apps/user_ldap/js/wizard/wizardTabExpert.js | 4 +-- apps/user_ldap/js/wizard/wizardTabGeneric.js | 6 ++--- .../js/wizard/wizardTabLoginFilter.js | 6 ++--- .../src/store/predefinedStatuses.js | 2 +- core/src/OC/util.js | 2 +- core/src/OCP/comments.js | 8 +++--- core/src/OCP/whatsnew.js | 24 +++++++++--------- core/src/Util/get-url-parameter.js | 2 +- core/src/jquery/selectrange.js | 2 +- .../services/WebAuthnAuthenticationService.js | 4 +-- core/src/systemtags/systemtagscollection.js | 2 +- dist/comments-comments-app.js.map | Bin 83660 -> 83692 bytes dist/core-install.js.map | Bin 28452 -> 28460 bytes dist/core-login.js.map | Bin 403269 -> 403293 bytes dist/core-main.js.map | Bin 468728 -> 468871 bytes dist/core-systemtags.js.map | Bin 71531 -> 71539 bytes dist/files-sidebar.js.map | Bin 66286 -> 66294 bytes ...-vue-settings-apps-users-management.js.map | Bin 83346 -> 83342 bytes ...ings-vue-settings-personal-webauthn.js.map | Bin 51941 -> 51965 bytes dist/systemtags-systemtags.js.map | Bin 44574 -> 44584 bytes dist/twofactor_backupscodes-settings.js.map | Bin 32111 -> 32119 bytes dist/user_status-menu.js.map | Bin 82081 -> 82092 bytes 36 files changed, 68 insertions(+), 69 deletions(-) diff --git a/apps/comments/src/services/GetComments.js b/apps/comments/src/services/GetComments.js index bfce1bf9f9b..71cde8922f5 100644 --- a/apps/comments/src/services/GetComments.js +++ b/apps/comments/src/services/GetComments.js @@ -65,8 +65,8 @@ export default async function({ commentsType, ressourceId }, options = {}) { // https://github.com/perry-mitchell/webdav-client/blob/9de2da4a2599e06bd86c2778145b7ade39fe0b3c/source/interface/directoryContents.js#L32 /** - * @param result - * @param isDetailed + * @param {any} result - + * @param {any} isDetailed - */ function processMultistatus(result, isDetailed = false) { // Extract the response items (directory contents) @@ -91,8 +91,8 @@ function processMultistatus(result, isDetailed = false) { } /** - * @param value - * @param passes + * @param {any} value - + * @param {any} passes - */ function decodeHtmlEntities(value, passes = 1) { const parser = new DOMParser() diff --git a/apps/dav/src/service/CalendarService.js b/apps/dav/src/service/CalendarService.js index 9de0d0b5946..afef4bc2263 100644 --- a/apps/dav/src/service/CalendarService.js +++ b/apps/dav/src/service/CalendarService.js @@ -108,8 +108,8 @@ export async function findScheduleInboxAvailability() { } /** - * @param slots - * @param timezoneId + * @param {any} slots - + * @param {any} timezoneId - */ export async function saveScheduleInboxAvailability(slots, timezoneId) { const all = [...Object.keys(slots).flatMap(dayId => slots[dayId].map(slot => ({ diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index fec058effd3..2a3bea1ca16 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1203,7 +1203,7 @@ /** * Custom code * Set tag for all selected files - * @param tagModel + * @param {any} tagModel - * @private */ _onSelectTag: function(tagModel) { @@ -1221,7 +1221,7 @@ }, /** * remove tag from all selected files - * @param tagId + * @param {any} tagId - * @private */ _onDeselectTag: function(tagId) { @@ -3348,7 +3348,7 @@ }, /** * hide files matching the given filter - * @param filter + * @param {any} filter - */ setFilter:function(filter) { var total = 0; @@ -3413,7 +3413,7 @@ }, /** * get the current filter - * @param filter + * @param {any} filter - */ getFilter:function(filter) { return this._filter; diff --git a/apps/files/src/services/FileInfo.js b/apps/files/src/services/FileInfo.js index a94436e16a5..0a83bd90a95 100644 --- a/apps/files/src/services/FileInfo.js +++ b/apps/files/src/services/FileInfo.js @@ -23,7 +23,7 @@ import axios from '@nextcloud/axios' /** - * @param url + * @param {any} url - */ export default async function(url) { const response = await axios({ diff --git a/apps/files_external/js/statusmanager.js b/apps/files_external/js/statusmanager.js index a6fda3dc897..e80d764baa7 100644 --- a/apps/files_external/js/statusmanager.js +++ b/apps/files_external/js/statusmanager.js @@ -383,8 +383,8 @@ OCA.Files_External.StatusManager = { /** * Function to display custom dialog to enter credentials - * @param mountPoint - * @param mountData + * @param {any} mountPoint - + * @param {any} mountData - */ showCredentialsDialog: function (mountPoint, mountData) { var dialog = $(OCA.Files_External.Templates.credentialsDialog({ diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 3aa4ed78890..b31022fc2cc 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -377,12 +377,12 @@ OCA.Sharing.PublicApp = { * fall back to old behaviour where we redirect the user to his server to mount * the public link instead of creating a dedicated federated share * - * @param remote - * @param token - * @param owner - * @param ownerDisplayName - * @param name - * @param isProtected + * @param {any} remote - + * @param {any} token - + * @param {any} owner - + * @param {any} ownerDisplayName - + * @param {any} name - + * @param {any} isProtected - * @private */ _legacyCreateFederatedShare: function (remote, token, owner, ownerDisplayName, name, isProtected) { diff --git a/apps/settings/js/settings/personalInfo.js b/apps/settings/js/settings/personalInfo.js index a4b1713c662..98a2dfe8d48 100644 --- a/apps/settings/js/settings/personalInfo.js +++ b/apps/settings/js/settings/personalInfo.js @@ -16,7 +16,7 @@ OC.Settings = OC.Settings || {}; * The callback will be fired as soon as enter is pressed by the * user or 1 second after the last data entry * - * @param callback + * @param {any} callback - * @param allowEmptyValue if this is set to true the callback is also called when the value is empty */ jQuery.fn.keyUpDelayedOrEnter = function (callback, allowEmptyValue) { diff --git a/apps/settings/src/service/WebAuthnRegistrationSerice.js b/apps/settings/src/service/WebAuthnRegistrationSerice.js index 91ee0dae2b2..d009c5eac67 100644 --- a/apps/settings/src/service/WebAuthnRegistrationSerice.js +++ b/apps/settings/src/service/WebAuthnRegistrationSerice.js @@ -34,8 +34,8 @@ export async function startRegistration() { } /** - * @param name - * @param data + * @param {any} name - + * @param {any} data - */ export async function finishRegistration(name, data) { const url = generateUrl('/settings/api/personal/webauthn/registration') @@ -45,7 +45,7 @@ export async function finishRegistration(name, data) { } /** - * @param id + * @param {any} id - */ export async function removeRegistration(id) { const url = generateUrl(`/settings/api/personal/webauthn/registration/${id}`) diff --git a/apps/settings/src/store/users.js b/apps/settings/src/store/users.js index d898e647d32..dbbe038d4fd 100644 --- a/apps/settings/src/store/users.js +++ b/apps/settings/src/store/users.js @@ -278,7 +278,7 @@ const actions = { * @param {object} options destructuring object * @param {number} options.offset List offset to request * @param {number} options.limit List number to return from offset - * @param options.search + * @param {string} options.search - * @return {Promise} */ getUsersFromList(context, { offset, limit, search }) { @@ -301,7 +301,7 @@ const actions = { * @param {object} options destructuring object * @param {number} options.offset List offset to request * @param {number} options.limit List number to return from offset - * @param options.groupid + * @param {string} options.groupid - * @return {Promise} */ getUsersFromGroup(context, { groupid, offset, limit }) { @@ -462,8 +462,8 @@ const actions = { * Add a user * * @param {object} context store context - * @param {Function} context.commit - * @param {Function} context.dispatch + * @param {Function} context.commit - + * @param {Function} context.dispatch - * @param {object} options destructuring object * @param {string} options.userid User id * @param {string} options.password User password @@ -473,7 +473,6 @@ const actions = { * @param {string} options.subadmin User subadmin groups * @param {string} options.quota User email * @param {string} options.language User language - * @param options.language * @return {Promise} */ addUser({ commit, dispatch }, { userid, password, displayName, email, groups, subadmin, quota, language }) { diff --git a/apps/systemtags/src/systemtagsfilelist.js b/apps/systemtags/src/systemtagsfilelist.js index 4821f140222..024cab966c3 100644 --- a/apps/systemtags/src/systemtagsfilelist.js +++ b/apps/systemtags/src/systemtagsfilelist.js @@ -48,7 +48,7 @@ /** * Array of system tag ids to filter by * - * @type Array. + * @type {Array.} */ _systemTagIds: [], _lastUsedTags: [], diff --git a/apps/systemtags/src/systemtagsinfoview.js b/apps/systemtags/src/systemtagsinfoview.js index 353f8d555f9..d210304e920 100644 --- a/apps/systemtags/src/systemtagsinfoview.js +++ b/apps/systemtags/src/systemtagsinfoview.js @@ -27,7 +27,7 @@ (function(OCA) { /** - * @param model + * @param {any} model - */ function modelToSelection(model) { const data = model.toJSON() diff --git a/apps/twofactor_backupcodes/src/service/PrintService.js b/apps/twofactor_backupcodes/src/service/PrintService.js index e8b31516532..c3f281d3f9e 100644 --- a/apps/twofactor_backupcodes/src/service/PrintService.js +++ b/apps/twofactor_backupcodes/src/service/PrintService.js @@ -22,7 +22,7 @@ */ /** - * @param data + * @param {any} data - */ export function print(data) { const name = OC.theme.name || 'Nextcloud' diff --git a/apps/user_ldap/js/wizard/wizardTabAdvanced.js b/apps/user_ldap/js/wizard/wizardTabAdvanced.js index 1545147f64c..be98072dcb3 100644 --- a/apps/user_ldap/js/wizard/wizardTabAdvanced.js +++ b/apps/user_ldap/js/wizard/wizardTabAdvanced.js @@ -17,8 +17,8 @@ OCA = OCA || {}; /** * initializes the instance. Always call it after initialization. * - * @param tabIndex - * @param tabID + * @param {any} tabIndex - + * @param {any} tabID - */ init: function (tabIndex, tabID) { this._super(tabIndex, tabID); @@ -281,7 +281,7 @@ OCA = OCA || {}; setDynamicGroupMemberURL: function(attribute) { this.setElementValue(this.managedItems.ldap_dynamic_group_member_url.$element, attribute); }, - + /** * enabled or disables the use of nested groups (groups in groups in * groups…) diff --git a/apps/user_ldap/js/wizard/wizardTabElementary.js b/apps/user_ldap/js/wizard/wizardTabElementary.js index 24e76bd84c7..7dbb9998064 100644 --- a/apps/user_ldap/js/wizard/wizardTabElementary.js +++ b/apps/user_ldap/js/wizard/wizardTabElementary.js @@ -22,8 +22,8 @@ OCA = OCA || {}; /** * initializes the instance. Always call it after initialization. * - * @param tabIndex - * @param tabID + * @param {any} tabIndex - + * @param {any} tabID - */ init: function (tabIndex, tabID) { tabIndex = 0; @@ -245,8 +245,8 @@ OCA = OCA || {}; * updates the configuration chooser upon the deletion of a * configuration and, if necessary, loads an existing one. * - * @param view - * @param result + * @param {any} view - + * @param {any} result - */ onDeleteConfiguration: function(view, result) { if(result.isSuccess === true) { diff --git a/apps/user_ldap/js/wizard/wizardTabExpert.js b/apps/user_ldap/js/wizard/wizardTabExpert.js index 634d30212ac..61a1b8c9aa3 100644 --- a/apps/user_ldap/js/wizard/wizardTabExpert.js +++ b/apps/user_ldap/js/wizard/wizardTabExpert.js @@ -17,8 +17,8 @@ OCA = OCA || {}; /** * initializes the instance. Always call it after initialization. * - * @param tabIndex - * @param tabID + * @param {any} tabIndex - + * @param {any} tabID - */ init: function (tabIndex, tabID) { this._super(tabIndex, tabID); diff --git a/apps/user_ldap/js/wizard/wizardTabGeneric.js b/apps/user_ldap/js/wizard/wizardTabGeneric.js index b68c399f992..89ae257d368 100644 --- a/apps/user_ldap/js/wizard/wizardTabGeneric.js +++ b/apps/user_ldap/js/wizard/wizardTabGeneric.js @@ -147,8 +147,8 @@ OCA = OCA || {}; /** * displays server error messages. * - * @param view - * @param payload + * @param {any} view - + * @param {any} payload - */ onServerError: function(view, payload) { if ( !_.isUndefined(view.managedItems[payload.relatedKey])) { @@ -456,7 +456,7 @@ OCA = OCA || {}; * sets the filter mode initially and resets the "isToggling" marker. * This method is called after a save operation against the mode key. * - * @param mode + * @param {any} mode - */ setFilterModeOnce: function(mode) { this.isToggling = false; diff --git a/apps/user_ldap/js/wizard/wizardTabLoginFilter.js b/apps/user_ldap/js/wizard/wizardTabLoginFilter.js index a0362c3ba93..774c02dbf4a 100644 --- a/apps/user_ldap/js/wizard/wizardTabLoginFilter.js +++ b/apps/user_ldap/js/wizard/wizardTabLoginFilter.js @@ -16,8 +16,8 @@ OCA = OCA || {}; /** * initializes the instance. Always call it after initialization. * - * @param tabIndex - * @param tabID + * @param {any} tabIndex - + * @param {any} tabID - */ init: function (tabIndex, tabID) { this._super(tabIndex, tabID); @@ -134,7 +134,7 @@ OCA = OCA || {}; /** * presents the result of the login name test * - * @param result + * @param {any} result - */ handleLoginTestResult: function(result) { var message; diff --git a/apps/user_status/src/store/predefinedStatuses.js b/apps/user_status/src/store/predefinedStatuses.js index aa05f8e54af..769e978227c 100644 --- a/apps/user_status/src/store/predefinedStatuses.js +++ b/apps/user_status/src/store/predefinedStatuses.js @@ -48,7 +48,7 @@ const actions = { * * @param {object} vuex The Vuex components * @param {Function} vuex.commit The Vuex commit function - * @param vuex.state + * @param {object} vuex.state - */ async loadAllPredefinedStatuses({ state, commit }) { if (state.predefinedStatuses.length > 0) { diff --git a/core/src/OC/util.js b/core/src/OC/util.js index 463fd937eca..e93b1aca615 100644 --- a/core/src/OC/util.js +++ b/core/src/OC/util.js @@ -28,7 +28,7 @@ import OC from './index' import { formatFileSize as humanFileSize } from '@nextcloud/files' /** - * @param t + * @param {any} t - */ function chunkify(t) { // Adapted from http://my.opera.com/GreyWyvern/blog/show.dml/1671288 diff --git a/core/src/OCP/comments.js b/core/src/OCP/comments.js index 0817302c067..dadc9531235 100644 --- a/core/src/OCP/comments.js +++ b/core/src/OCP/comments.js @@ -35,21 +35,21 @@ import $ from 'jquery' const urlRegex = /(\s|^)(https?:\/\/)?((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|$)/ig /** - * @param content + * @param {any} content - */ export function plainToRich(content) { return this.formatLinksRich(content) } /** - * @param content + * @param {any} content - */ export function richToPlain(content) { return this.formatLinksPlain(content) } /** - * @param content + * @param {any} content - */ export function formatLinksRich(content) { return content.replace(urlRegex, function(_, leadingSpace, protocol, url, trailingSpace) { @@ -65,7 +65,7 @@ export function formatLinksRich(content) { } /** - * @param content + * @param {any} content - */ export function formatLinksPlain(content) { const $content = $('
').html(content) diff --git a/core/src/OCP/whatsnew.js b/core/src/OCP/whatsnew.js index d125f85e11a..043951c3a1e 100644 --- a/core/src/OCP/whatsnew.js +++ b/core/src/OCP/whatsnew.js @@ -26,7 +26,7 @@ import $ from 'jquery' import { generateOcsUrl } from '@nextcloud/router' /** - * @param options + * @param {any} options - */ export function query(options) { options = options || {} @@ -42,8 +42,8 @@ export function query(options) { } /** - * @param version - * @param options + * @param {any} version - + * @param {any} options - */ export function dismiss(version, options) { options = options || {} @@ -59,10 +59,10 @@ export function dismiss(version, options) { } /** - * @param data - * @param statusText - * @param xhr - * @param dismissOptions + * @param {any} data - + * @param {any} statusText - + * @param {any} xhr - + * @param {any} dismissOptions - */ function onQuerySuccess(data, statusText, xhr, dismissOptions) { console.debug('querying Whats New data was successful: ' + statusText) @@ -145,9 +145,9 @@ function onQuerySuccess(data, statusText, xhr, dismissOptions) { } /** - * @param x - * @param t - * @param e + * @param {any} x - + * @param {any} t - + * @param {any} e - */ function onQueryError(x, t, e) { console.debug('querying Whats New Data resulted in an error: ' + t + e) @@ -155,14 +155,14 @@ function onQueryError(x, t, e) { } /** - * @param data + * @param {any} data - */ function onDismissSuccess(data) { // noop } /** - * @param data + * @param {any} data - */ function onDismissError(data) { console.debug('dismissing Whats New data resulted in an error: ' + data) diff --git a/core/src/Util/get-url-parameter.js b/core/src/Util/get-url-parameter.js index 32214d6bfe3..ebe4f9d78e3 100644 --- a/core/src/Util/get-url-parameter.js +++ b/core/src/Util/get-url-parameter.js @@ -22,7 +22,7 @@ */ /** - * @param name + * @param {any} name - */ export default function getURLParameter(name) { return decodeURIComponent( diff --git a/core/src/jquery/selectrange.js b/core/src/jquery/selectrange.js index f110bdbc501..e35ca85b497 100644 --- a/core/src/jquery/selectrange.js +++ b/core/src/jquery/selectrange.js @@ -26,7 +26,7 @@ import $ from 'jquery' /** * select a range in an input field * - * @link http://stackoverflow.com/questions/499126/jquery-set-cursor-position-in-text-area + * @see {@link http://stackoverflow.com/questions/499126/jquery-set-cursor-position-in-text-area} * @param {number} start start selection from * @param {number} end number of char from start * @return {void} diff --git a/core/src/services/WebAuthnAuthenticationService.js b/core/src/services/WebAuthnAuthenticationService.js index 1e33dc78b3b..7773aa7dad1 100644 --- a/core/src/services/WebAuthnAuthenticationService.js +++ b/core/src/services/WebAuthnAuthenticationService.js @@ -24,7 +24,7 @@ import Axios from '@nextcloud/axios' import { generateUrl } from '@nextcloud/router' /** - * @param loginName + * @param {any} loginName - */ export function startAuthentication(loginName) { const url = generateUrl('/login/webauthn/start') @@ -34,7 +34,7 @@ export function startAuthentication(loginName) { } /** - * @param data + * @param {any} data - */ export function finishAuthentication(data) { const url = generateUrl('/login/webauthn/finish') diff --git a/core/src/systemtags/systemtagscollection.js b/core/src/systemtags/systemtagscollection.js index 5e6c43314e1..74517cf43ec 100644 --- a/core/src/systemtags/systemtagscollection.js +++ b/core/src/systemtags/systemtagscollection.js @@ -61,7 +61,7 @@ * Lazy fetch. * Only fetches once, subsequent calls will directly call the success handler. * - * @param options + * @param {any} options - * @param [options.force] true to force fetch even if cached entries exist * * @see Backbone.Collection#fetch diff --git a/dist/comments-comments-app.js.map b/dist/comments-comments-app.js.map index 24efb87600e7065cb1f3fc1493c32e7a51df3a08..b5196f48e7fff7a57a03e7321225ed7b06d46df8 100644 GIT binary patch delta 104 zcmX@p%lf95b;IQAI@O7Jm9+{*sl}x^B?`JRc?wzz4h4xtiMa|8napCB)RM%^oYWKr h-OcN-n=-3I#LE(MN>j0EC`c?WPAvv1{(b9WHUL$kD8K*! delta 72 zcmaFU%X+4lb;IQAGDWGyr8y-rc?wzz4h4xtiMa}y#V)BOiJ3X6DVz6SH)R$tOUx-v SMOILdSX`W1yjlA8#cTjEF&!NM diff --git a/dist/core-install.js.map b/dist/core-install.js.map index 9e3552f5eca9dd71ae2612e4e2d9ab34cb44fbd9..dced50d0a91090e48dc2d475d364d897b03fadca 100644 GIT binary patch delta 27 jcmZ2-k8#aC#tk=Pc&ZcgDr*(;5_3}(bT{9PaTfvruzm}Z delta 19 bcmZ2;k8#O8#tk=PSn?8cQ#U`2aTfvrU=j%C diff --git a/dist/core-login.js.map b/dist/core-login.js.map index f7afd522728a32a388fb723b8152c81a790344b8..75fdde7149ba70dd57704a212f6a89bd24021e72 100644 GIT binary patch delta 87 zcmX?lPU7x4iG~)&7N#xCcg}EDC+1bwDwHVbZohkmIqIz-grAe2o|)&Dn47AgJ3a6< fqxkgjT`Zeh!?ZjN;SNcd=|{Nl7e8 R1asSMce8A_-OZ|y0|1d}8p!|v diff --git a/dist/core-main.js.map b/dist/core-main.js.map index 6478e328fe6e299d56e705362131032350de3edb..a5c1ae34ee5c4e4377d55a60addb4e15873cf79f 100644 GIT binary patch delta 464 zcmexyR;K;DOhXG}3sVd87M2HMoYjeWm9+{b3cA}Lim~*4;D_*&^Ycnl^MIn${jHe9 zr}wh6hG3WZ&(0c(T_%%@m3wvRrdh;A4N8dedXCu<9|_#^gw5n~W$T6S-Jlu(0PBlw{`T6@v`eKA)epk5Q^DwWt^<6qBc*rQlGISd^HnfUGD_ zkhPi7IVG_q5m`lXNn%N9aY$-K39@KKMiDYMC9^m;v$)tFV&(P_Vb*mV(iO-mP;{qG zHvsLCY!N{K D74vEt diff --git a/dist/core-systemtags.js.map b/dist/core-systemtags.js.map index 250542384a8db84d63d3c12a22fa0da860ffd065..6d8cad8e7c29dcb9d1b73da859750b9dabeedad5 100644 GIT binary patch delta 30 mcmaF8j^*<@mJR0)@K-11Rn{ux7nEe?=M^jHZoYb8S{MN6gbsZG delta 22 ecmeyoj^*__mJR0)u;&+)Waj4;Z@znAS{ML{iVM&H diff --git a/dist/files-sidebar.js.map b/dist/files-sidebar.js.map index bc3b5d20be15721c96d7d5b66849a47d65278df0..a9f17d7861ab7347a89e838b72b103b86ac4251b 100644 GIT binary patch delta 26 hcmaFY%JQw1WkYT}cXeW3WvxPKQI3M{=7RXT#Q>XN3n2gi delta 18 Zcmey?%JQz2WkYT}b7@h|=8E{b#Q;(W2y_4d diff --git a/dist/settings-vue-settings-apps-users-management.js.map b/dist/settings-vue-settings-apps-users-management.js.map index 8510e31920409cb8ee8fd61b4e281f3c0467f111..e00e85530daa6dd1b338601bb5ebb70e3d51e22c 100644 GIT binary patch delta 252 zcmbQ#&Dz(^y5WwBfOdF>vyQu?W2RGyi;k~j#^g6D5dxKIkr_@pk&cexl`cAgj#ZmO zRJ|Cv@*~WgvO#?F%`4P|1qJe*%v~~Ff&9FnRGnnU+|8%WKQpoy1*hr+I~GnpYWY^Q zBm~4R4skDb(s6Yx3Go2hRJ{4Pl?|h4RVYZRGSnjPDClk$ i-2X<538>=lRZS4ZxWQ@ifmy%`4P|1qBM7%v~~Ff&7A?RGnnU{LQD$KQpqI1gGi*I~GqqYWY^Q zECj?Z4RJ4a(s6Yx3-JKjRJ!@Nl?|h)VJJw-Ak-rtBxM-t4wN$3EMfDHk-aD!Bvm+B z*6t!xM#kn3cD*%x`2{7J`FX{9#i@x!$r+OcZzxap*~qc^;BFsgUYJ~ZQGRK`f<_+^KRjL#7Dr*(;5_3}(bYt=qv=kf)5{nXZ6(Hg%i6w~&x|1(h$WA_Q Sd6o+zn3)0*+PvFJYXSf~M;x{Q delta 50 zcmex6mHFvZ<_+^KMe-7JQ)BWJv=kf)5{nXZ6;cvQ5+`4+4n0FP!7 Ar~m)} diff --git a/dist/twofactor_backupscodes-settings.js.map b/dist/twofactor_backupscodes-settings.js.map index 9adbc8abd197dd77e84bd6b5c2094616b7b0ebc6..decfd5644dcdc3158ef585ee756c02e455e01339 100644 GIT binary patch delta 27 jcmaF=i}Cv}#tnZhc&ZcgDr*%|5=#;lbT>0v=D7d>!AA?U delta 19 bcmezVi}C$0#tnZhSW*&85;t>N=D7d>YIz9< diff --git a/dist/user_status-menu.js.map b/dist/user_status-menu.js.map index 3482e0558361600d0e5fbb2ecec3e9a33ce2f2d4..15db5170f4d0bca7a10eed4fd78b82cb4fc9f27d 100644 GIT binary patch delta 20 ccmZ43$hxMHbwlOm$qDyF7