mirror of
https://github.com/nextcloud/server.git
synced 2026-02-24 10:26:07 -05:00
2 lines
No EOL
18 KiB
JavaScript
2 lines
No EOL
18 KiB
JavaScript
(()=>{"use strict";var e,n,o,a={33788(e,n,o){var a=o(21777),r=o(81222),i=o(53334),s=o(85471),l=o(19051),c=o(85168),d=o(51651),A=o(47176),u=o(63814),p=o(32073),E=o(371),g=o(88837);const b=(0,o(35947).YK)().setApp("settings").detectUser().build(),m=(0,r.C)("settings","lastCron"),T=(0,r.C)("settings","cronMaxAge",""),f=(0,r.C)("settings","backgroundJobsMode","cron"),v=(0,r.C)("settings","cliBasedCronPossible",!0),h=(0,r.C)("settings","cliBasedCronUser","www-data"),I=(0,r.C)("settings","backgroundJobsDocUrl"),C={name:"BackgroundJob",components:{NcCheckboxRadioSwitch:p.A,NcSettingsSection:g.A,NcNoteCard:E.A},data:()=>({lastCron:m,cronMaxAge:T,backgroundJobsMode:f,cliBasedCronPossible:v,cliBasedCronUser:h,backgroundJobsDocUrl:I,relativeTime:(0,d.A)(1e3*m).fromNow(),maxAgeRelativeTime:(0,d.A)(1e3*T).fromNow()}),computed:{cronLabel(){let e=t("settings","Use system cron service to call the cron.php file every 5 minutes.");return this.cliBasedCronPossible?e+="<br>"+t("settings",'The cron.php needs to be executed by the system account "{user}".',{user:this.cliBasedCronUser}):e+="<br>"+t("settings","The PHP POSIX extension is required. See {linkstart}PHP documentation{linkend} for more details.",{linkstart:'<a target="_blank" rel="noreferrer nofollow" class="external" href="https://www.php.net/manual/en/book.posix.php">',linkend:"</a>"},void 0,{escape:!1}),e},oldExecution(){return Date.now()/1e3-this.lastCron>600},longExecutionNotCron(){return Date.now()/1e3-this.cronMaxAge>43200&&"cron"!==this.backgroundJobsMode},longExecutionCron(){return Date.now()/1e3-this.cronMaxAge>86400&&"cron"===this.backgroundJobsMode}},methods:{async onBackgroundJobModeChanged(e){const n=(0,u.KT)("/apps/provisioning_api/api/v1/config/apps/{appId}/{key}",{appId:"core",key:"backgroundjobs_mode"});await(0,A.C5)();try{const{data:t}=await l.Ay.post(n,{value:e});this.handleResponse({status:t.ocs?.meta?.status})}catch(e){this.handleResponse({errorMessage:t("settings","Unable to update background job mode"),error:e})}},async handleResponse({status:e,errorMessage:t,error:n}){"ok"===e?await this.deleteError():((0,c.Qg)(t),b.error(t,n))},async deleteError(){const e=(0,u.KT)("/apps/provisioning_api/api/v1/config/apps/{appId}/{key}",{appId:"core",key:"cronErrors"});await(0,A.C5)();try{await l.Ay.delete(e)}catch(e){b.error(e)}}}},O=C;var L=o(85072),R=o.n(L),y=o(97825),P=o.n(y),N=o(77659),k=o.n(N),S=o(55056),_=o.n(S),D=o(10540),w=o.n(D),x=o(41113),B=o.n(x),M=o(24626),V={};V.styleTagTransform=B(),V.setAttributes=_(),V.insert=k().bind(null,"head"),V.domAPI=P(),V.insertStyleElement=w(),R()(M.A,V),M.A&&M.A.locals&&M.A.locals;var H=o(14486);const j=(0,H.A)(O,function(){var e=this,t=e._self._c;return t("NcSettingsSection",{attrs:{name:e.t("settings","Background jobs"),description:e.t("settings","For the server to work properly, it's important to configure background jobs correctly. Cron is the recommended setting. Please see the documentation for more information."),"doc-url":e.backgroundJobsDocUrl}},[0!==e.lastCron?[e.oldExecution?t("NcNoteCard",{attrs:{type:"error"}},[e._v("\n\t\t\t"+e._s(e.t("settings","Last job execution ran {time}. Something seems wrong.",{time:e.relativeTime}))+"\n\t\t")]):e.longExecutionCron?t("NcNoteCard",{attrs:{type:"warning"}},[e._v("\n\t\t\t"+e._s(e.t("settings","Some jobs have not been executed since {maxAgeRelativeTime}. Please consider increasing the execution frequency.",{maxAgeRelativeTime:e.maxAgeRelativeTime}))+"\n\t\t")]):e.longExecutionNotCron?t("NcNoteCard",{attrs:{type:"warning"}},[e._v("\n\t\t\t"+e._s(e.t("settings","Some jobs have not been executed since {maxAgeRelativeTime}. Please consider switching to system cron.",{maxAgeRelativeTime:e.maxAgeRelativeTime}))+"\n\t\t")]):t("NcNoteCard",{attrs:{type:"success"}},[e._v("\n\t\t\t"+e._s(e.t("settings","Last job ran {relativeTime}.",{relativeTime:e.relativeTime}))+"\n\t\t")])]:t("NcNoteCard",{attrs:{type:"error"}},[e._v("\n\t\t"+e._s(e.t("settings","Background job did not run yet!"))+"\n\t")]),e._v(" "),t("NcCheckboxRadioSwitch",{staticClass:"ajaxSwitch",attrs:{type:"radio",name:"backgroundJobsMode",value:"ajax"},on:{"update:modelValue":e.onBackgroundJobModeChanged},model:{value:e.backgroundJobsMode,callback:function(t){e.backgroundJobsMode=t},expression:"backgroundJobsMode"}},[e._v("\n\t\t"+e._s(e.t("settings","AJAX"))+"\n\t")]),e._v(" "),t("em",[e._v(e._s(e.t("settings","Execute one task with each page loaded. Use case: Single account instance.")))]),e._v(" "),t("NcCheckboxRadioSwitch",{attrs:{type:"radio",name:"backgroundJobsMode",value:"webcron"},on:{"update:modelValue":e.onBackgroundJobModeChanged},model:{value:e.backgroundJobsMode,callback:function(t){e.backgroundJobsMode=t},expression:"backgroundJobsMode"}},[e._v("\n\t\t"+e._s(e.t("settings","Webcron"))+"\n\t")]),e._v(" "),t("em",[e._v(e._s(e.t("settings","cron.php is registered at a webcron service to call cron.php every 5 minutes over HTTP. Use case: Very small instance (1–5 accounts depending on the usage).")))]),e._v(" "),t("NcCheckboxRadioSwitch",{attrs:{type:"radio",disabled:!e.cliBasedCronPossible,value:"cron",name:"backgroundJobsMode"},on:{"update:modelValue":e.onBackgroundJobModeChanged},model:{value:e.backgroundJobsMode,callback:function(t){e.backgroundJobsMode=t},expression:"backgroundJobsMode"}},[e._v("\n\t\t"+e._s(e.t("settings","Cron (Recommended)"))+"\n\t")]),e._v(" "),t("em",{domProps:{innerHTML:e._s(e.cronLabel)}})],2)},[],!1,null,"2a5d4224",null).exports;var F=o(9165);const U=Object.freeze({ADDRESS:"address",AVATAR:"avatar",BIOGRAPHY:"biography",BIRTHDATE:"birthdate",DISPLAYNAME:"displayname",EMAIL_COLLECTION:"additional_mail",EMAIL:"email",FEDIVERSE:"fediverse",HEADLINE:"headline",NOTIFICATION_EMAIL:"notify_email",ORGANISATION:"organisation",PHONE:"phone",PROFILE_ENABLED:"profile_enabled",PRONOUNS:"pronouns",ROLE:"role",TWITTER:"twitter",BLUESKY:"bluesky",WEBSITE:"website"}),Y=Object.freeze({ADDRESS:(0,i.Tl)("settings","Location"),AVATAR:(0,i.Tl)("settings","Profile picture"),BIOGRAPHY:(0,i.Tl)("settings","About"),BIRTHDATE:(0,i.Tl)("settings","Date of birth"),DISPLAYNAME:(0,i.Tl)("settings","Full name"),EMAIL_COLLECTION:(0,i.Tl)("settings","Additional email"),EMAIL:(0,i.Tl)("settings","Email"),FEDIVERSE:(0,i.Tl)("settings","Fediverse (e.g. Mastodon)"),HEADLINE:(0,i.Tl)("settings","Headline"),ORGANISATION:(0,i.Tl)("settings","Organisation"),PHONE:(0,i.Tl)("settings","Phone number"),PROFILE_ENABLED:(0,i.Tl)("settings","Profile"),PRONOUNS:(0,i.Tl)("settings","Pronouns"),ROLE:(0,i.Tl)("settings","Role"),TWITTER:(0,i.Tl)("settings","X (formerly Twitter)"),BLUESKY:(0,i.Tl)("settings","Bluesky"),WEBSITE:(0,i.Tl)("settings","Website")});var J,G;function W(e){return"boolean"==typeof e}Object.freeze({[U.ADDRESS]:Y.ADDRESS,[U.AVATAR]:Y.AVATAR,[U.BIOGRAPHY]:Y.BIOGRAPHY,[U.DISPLAYNAME]:Y.DISPLAYNAME,[U.EMAIL_COLLECTION]:Y.EMAIL_COLLECTION,[U.EMAIL]:Y.EMAIL,[U.HEADLINE]:Y.HEADLINE,[U.ORGANISATION]:Y.ORGANISATION,[U.PHONE]:Y.PHONE,[U.PROFILE_ENABLED]:Y.PROFILE_ENABLED,[U.ROLE]:Y.ROLE,[U.TWITTER]:Y.TWITTER,[U.BLUESKY]:Y.BLUESKY,[U.FEDIVERSE]:Y.FEDIVERSE,[U.WEBSITE]:Y.WEBSITE,[U.BIRTHDATE]:Y.BIRTHDATE,[U.PRONOUNS]:Y.PRONOUNS}),Object.freeze({PROFILE_VISIBILITY:(0,i.Tl)("settings","Profile visibility")}),Object.freeze({[Y.ADDRESS]:U.ADDRESS,[Y.AVATAR]:U.AVATAR,[Y.BIOGRAPHY]:U.BIOGRAPHY,[Y.DISPLAYNAME]:U.DISPLAYNAME,[Y.EMAIL_COLLECTION]:U.EMAIL_COLLECTION,[Y.EMAIL]:U.EMAIL,[Y.HEADLINE]:U.HEADLINE,[Y.ORGANISATION]:U.ORGANISATION,[Y.PHONE]:U.PHONE,[Y.PROFILE_ENABLED]:U.PROFILE_ENABLED,[Y.ROLE]:U.ROLE,[Y.TWITTER]:U.TWITTER,[Y.BLUESKY]:U.BLUESKY,[Y.FEDIVERSE]:U.FEDIVERSE,[Y.WEBSITE]:U.WEBSITE,[Y.BIRTHDATE]:U.BIRTHDATE,[Y.PRONOUNS]:U.PRONOUNS}),Object.freeze({LANGUAGE:"language",LOCALE:"locale",FIRST_DAY_OF_WEEK:"first_day_of_week",TIMEZONE:"timezone"}),Object.freeze({LANGUAGE:(0,i.Tl)("settings","Language"),LOCALE:(0,i.Tl)("settings","Locale"),FIRST_DAY_OF_WEEK:(0,i.Tl)("settings","First day of week"),TIMEZONE:(0,i.Tl)("settings","timezone")}),function(e){e.PRIVATE="v2-private",e.LOCAL="v2-local",e.FEDERATED="v2-federated",e.PUBLISHED="v2-published"}(J||(J={})),Object.freeze({[Y.ADDRESS]:[J.LOCAL,J.PRIVATE],[Y.AVATAR]:[J.LOCAL,J.PRIVATE],[Y.BIOGRAPHY]:[J.LOCAL,J.PRIVATE],[Y.DISPLAYNAME]:[J.LOCAL],[Y.EMAIL_COLLECTION]:[J.LOCAL],[Y.EMAIL]:[J.LOCAL],[Y.HEADLINE]:[J.LOCAL,J.PRIVATE],[Y.ORGANISATION]:[J.LOCAL,J.PRIVATE],[Y.PHONE]:[J.LOCAL,J.PRIVATE],[Y.PROFILE_ENABLED]:[J.LOCAL,J.PRIVATE],[Y.ROLE]:[J.LOCAL,J.PRIVATE],[Y.TWITTER]:[J.LOCAL,J.PRIVATE],[Y.BLUESKY]:[J.LOCAL,J.PRIVATE],[Y.FEDIVERSE]:[J.LOCAL,J.PRIVATE],[Y.WEBSITE]:[J.LOCAL,J.PRIVATE],[Y.BIRTHDATE]:[J.LOCAL,J.PRIVATE],[Y.PRONOUNS]:[J.LOCAL,J.PRIVATE]}),Object.freeze([Y.BIOGRAPHY,Y.HEADLINE,Y.ORGANISATION,Y.ROLE,Y.BIRTHDATE]),Object.freeze({[J.PRIVATE]:{name:J.PRIVATE,displayName:(0,i.Tl)("settings","Private"),tooltip:(0,i.Tl)("settings","Only visible to people matched via phone number integration through Talk on mobile"),tooltipDisabled:(0,i.Tl)("settings","Not available as this property is required for core functionality including file sharing and calendar invitations"),icon:F.vrq},[J.LOCAL]:{name:J.LOCAL,displayName:(0,i.Tl)("settings","Local"),tooltip:(0,i.Tl)("settings","Only visible to people on this instance and guests"),icon:F.uLB},[J.FEDERATED]:{name:J.FEDERATED,displayName:(0,i.Tl)("settings","Federated"),tooltip:(0,i.Tl)("settings","Only synchronize to trusted servers"),tooltipDisabled:(0,i.Tl)("settings","Not available as federation has been disabled for your account, contact your system administration if you have any questions"),icon:F.dgQ},[J.PUBLISHED]:{name:J.PUBLISHED,displayName:(0,i.Tl)("settings","Published"),tooltip:(0,i.Tl)("settings","Synchronize to trusted servers and the global and public address book"),tooltipDisabled:(0,i.Tl)("settings","Not available as publishing account specific data to the lookup server is not allowed, contact your system administration if you have any questions"),icon:F.zY6}}),J.LOCAL,function(e){e[e.NOT_VERIFIED=0]="NOT_VERIFIED",e[e.VERIFICATION_IN_PROGRESS=1]="VERIFICATION_IN_PROGRESS",e[e.VERIFIED=2]="VERIFIED"}(G||(G={}));const z=(0,r.C)("settings","profileEnabledByDefault",!0),K=(0,r.C)("settings","profilePickerEnabled",!0),q={name:"ProfileSettings",components:{NcCheckboxRadioSwitch:p.A,NcNoteCard:E.A},data:()=>({initialProfileEnabledByDefault:z,initialProfilePickerEnabled:K}),methods:{async onProfileDefaultChange(e){W(e)&&await this.updateProfileDefault(e)},async updateProfileDefault(e){try{const t=await async function(e){e=e?"1":"0";const t=(0,u.KT)("/apps/provisioning_api/api/v1/config/apps/{appId}/{key}",{appId:"settings",key:"profile_enabled_by_default"});return await(0,A.C5)(),(await l.Ay.post(t,{value:e})).data}(e);this.handleResponse({isEnabled:e,key:"initialProfileEnabledByDefault",status:t.ocs?.meta?.status})}catch(e){this.handleResponse({errorMessage:t("settings","Unable to update profile default setting"),error:e})}},async onProfilePickerChange(e){W(e)&&await this.updateProfilePicker(e)},async updateProfilePicker(e){try{const t=await async function(e){e=e?"1":"0";const t=(0,u.KT)("/apps/provisioning_api/api/v1/config/apps/{appId}/{key}",{appId:"settings",key:"profile_picker_enabled"});return await(0,A.C5)(),(await l.Ay.post(t,{value:e})).data}(e);this.handleResponse({isEnabled:e,key:"initialProfilePickerEnabled",status:t.ocs?.meta?.status})}catch(e){this.handleResponse({errorMessage:t("settings","Unable to update profile picker setting"),error:e})}},handleResponse({isEnabled:e,key:t,status:n,errorMessage:o,error:a}){"ok"===n?this[t]=e:((0,c.Qg)(o),b.error(o,a))}}};var $=o(5821),Q={};Q.styleTagTransform=B(),Q.setAttributes=_(),Q.insert=k().bind(null,"head"),Q.domAPI=P(),Q.insertStyleElement=w(),R()($.A,Q),$.A&&$.A.locals&&$.A.locals;const X=(0,H.A)(q,function(){var e=this,t=e._self._c;return t("div",{staticClass:"section",attrs:{id:"profile-settings"}},[t("h2",{staticClass:"inlineblock"},[e._v("\n\t\t"+e._s(e.t("settings","Profile"))+"\n\t")]),e._v(" "),t("NcNoteCard",{attrs:{type:"info"}},[e._v("\n\t\t"+e._s(e.t("settings","Enable or disable profile by default for new accounts."))+"\n\t")]),e._v(" "),t("NcCheckboxRadioSwitch",{attrs:{type:"switch"},on:{"update:modelValue":e.onProfileDefaultChange},model:{value:e.initialProfileEnabledByDefault,callback:function(t){e.initialProfileEnabledByDefault=t},expression:"initialProfileEnabledByDefault"}},[e._v("\n\t\t"+e._s(e.t("settings","Enable"))+"\n\t")]),e._v(" "),t("NcCheckboxRadioSwitch",{attrs:{type:"switch"},on:{"update:modelValue":e.onProfilePickerChange},model:{value:e.initialProfilePickerEnabled,callback:function(t){e.initialProfilePickerEnabled=t},expression:"initialProfilePickerEnabled"}},[e._v("\n\t\t"+e._s(e.t("settings","Enable the profile picker"))+"\n\t")]),e._v(" "),t("NcNoteCard",{attrs:{type:"info"}},[e._v("\n\t\t"+e._s(e.t("settings","Enable or disable the profile picker in the Smart Picker and the profile link previews."))+"\n\t")])],1)},[],!1,null,"35737193",null).exports;o.nc=(0,a.aV)();const Z=(0,r.C)("settings","profileEnabledGlobally",!0);s.Ay.mixin({props:{logger:b},methods:{t:i.Tl}}),(new(s.Ay.extend(j))).$mount("#vue-admin-background-job"),Z&&(new(s.Ay.extend(X))).$mount("#vue-admin-profile-settings")},24626(e,t,n){n.d(t,{A:()=>s});var o=n(71354),a=n.n(o),r=n(76314),i=n.n(r)()(a());i.push([e.id,".error[data-v-2a5d4224]{margin-top:8px;padding:5px;border-radius:var(--border-radius);color:var(--color-primary-element-text);background-color:var(--color-error);width:initial}.warning[data-v-2a5d4224]{margin-top:8px;padding:5px;border-radius:var(--border-radius);color:var(--color-primary-element-text);background-color:var(--color-warning);width:initial}.ajaxSwitch[data-v-2a5d4224]{margin-top:1rem}","",{version:3,sources:["webpack://./apps/settings/src/components/BasicSettings/BackgroundJob.vue"],names:[],mappings:"AACA,wBACC,cAAA,CACA,WAAA,CACA,kCAAA,CACA,uCAAA,CACA,mCAAA,CACA,aAAA,CAGD,0BACC,cAAA,CACA,WAAA,CACA,kCAAA,CACA,uCAAA,CACA,qCAAA,CACA,aAAA,CAGD,6BACC,eAAA",sourcesContent:["\n.error {\n\tmargin-top: 8px;\n\tpadding: 5px;\n\tborder-radius: var(--border-radius);\n\tcolor: var(--color-primary-element-text);\n\tbackground-color: var(--color-error);\n\twidth: initial;\n}\n\n.warning {\n\tmargin-top: 8px;\n\tpadding: 5px;\n\tborder-radius: var(--border-radius);\n\tcolor: var(--color-primary-element-text);\n\tbackground-color: var(--color-warning);\n\twidth: initial;\n}\n\n.ajaxSwitch {\n\tmargin-top: 1rem;\n}\n"],sourceRoot:""}]);const s=i},5821(e,t,n){n.d(t,{A:()=>s});var o=n(71354),a=n.n(o),r=n(76314),i=n.n(r)()(a());i.push([e.id,"#profile-settings[data-v-35737193]{max-width:600px}","",{version:3,sources:["webpack://./apps/settings/src/components/BasicSettings/ProfileSettings.vue"],names:[],mappings:"AACA,mCACC,eAAA",sourcesContent:["\n#profile-settings {\n\tmax-width: 600px;\n}\n"],sourceRoot:""}]);const s=i}},r={};function i(e){var t=r[e];if(void 0!==t)return t.exports;var n=r[e]={id:e,loaded:!1,exports:{}};return a[e].call(n.exports,n,n.exports,i),n.loaded=!0,n.exports}i.m=a,e=[],i.O=(t,n,o,a)=>{if(!n){var r=1/0;for(d=0;d<e.length;d++){for(var[n,o,a]=e[d],s=!0,l=0;l<n.length;l++)(!1&a||r>=a)&&Object.keys(i.O).every(e=>i.O[e](n[l]))?n.splice(l--,1):(s=!1,a<r&&(r=a));if(s){e.splice(d--,1);var c=o();void 0!==c&&(t=c)}}return t}a=a||0;for(var d=e.length;d>0&&e[d-1][2]>a;d--)e[d]=e[d-1];e[d]=[n,o,a]},i.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return i.d(t,{a:t}),t},i.d=(e,t)=>{for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce((t,n)=>(i.f[n](e,t),t),[])),i.u=e=>e+"-"+e+".js?v="+{1140:"490e17ed9c8948d5a9e8",2221:"428c2ff62c4b8b3c97fc",5448:"71cfe268d6f1213c4735",6015:"ebcb6885c1fc8c461988",7859:"740587c0c8c350dad157",7910:"de857920f8beb5205bbc",8815:"9a5c507c75429c9c04e4"}[e],i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n={},o="nextcloud-ui-legacy:",i.l=(e,t,a,r)=>{if(n[e])n[e].push(t);else{var s,l;if(void 0!==a)for(var c=document.getElementsByTagName("script"),d=0;d<c.length;d++){var A=c[d];if(A.getAttribute("src")==e||A.getAttribute("data-webpack")==o+a){s=A;break}}s||(l=!0,(s=document.createElement("script")).charset="utf-8",i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",o+a),s.src=e),n[e]=[t];var u=(t,o)=>{s.onerror=s.onload=null,clearTimeout(p);var a=n[e];if(delete n[e],s.parentNode&&s.parentNode.removeChild(s),a&&a.forEach(e=>e(o)),t)return t(o)},p=setTimeout(u.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=u.bind(null,s.onerror),s.onload=u.bind(null,s.onload),l&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),i.j=6282,(()=>{var e;globalThis.importScripts&&(e=globalThis.location+"");var t=globalThis.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");if(n.length)for(var o=n.length-1;o>-1&&(!e||!/^http(s?):/.test(e));)e=n[o--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),i.p=e})(),(()=>{i.b="undefined"!=typeof document&&document.baseURI||self.location.href;var e={6282:0};i.f.j=(t,n)=>{var o=i.o(e,t)?e[t]:void 0;if(0!==o)if(o)n.push(o[2]);else{var a=new Promise((n,a)=>o=e[t]=[n,a]);n.push(o[2]=a);var r=i.p+i.u(t),s=new Error;i.l(r,n=>{if(i.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var a=n&&("load"===n.type?"missing":n.type),r=n&&n.target&&n.target.src;s.message="Loading chunk "+t+" failed.\n("+a+": "+r+")",s.name="ChunkLoadError",s.type=a,s.request=r,o[1](s)}},"chunk-"+t,t)}},i.O.j=t=>0===e[t];var t=(t,n)=>{var o,a,[r,s,l]=n,c=0;if(r.some(t=>0!==e[t])){for(o in s)i.o(s,o)&&(i.m[o]=s[o]);if(l)var d=l(i)}for(t&&t(n);c<r.length;c++)a=r[c],i.o(e,a)&&e[a]&&e[a][0](),e[a]=0;return i.O(d)},n=globalThis.webpackChunknextcloud_ui_legacy=globalThis.webpackChunknextcloud_ui_legacy||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))})(),i.nc=void 0;var s=i.O(void 0,[4208],()=>i(33788));s=i.O(s)})();
|
||
//# sourceMappingURL=settings-vue-settings-admin-basic-settings.js.map?v=4e9603d71b0e4ad561df
|