-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11294 from nextcloud/feat/11279/handle-federation…
…s-invite feat(federations): provide admin setting to enable Federation in Talk
- Loading branch information
Showing
3 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<!-- | ||
- @copyright Copyright (c) 2024 Maksim Sukharev <antreesy.web@gmail.com> | ||
- | ||
- @author Maksim Sukharev <[email protected]> | ||
- | ||
- @license AGPL-3.0-or-later | ||
- | ||
- This program is free software: you can redistribute it and/or modify | ||
- it under the terms of the GNU Affero General Public License as | ||
- published by the Free Software Foundation, either version 3 of the | ||
- License, or (at your option) any later version. | ||
- | ||
- This program is distributed in the hope that it will be useful, | ||
- but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
- GNU Affero General Public License for more details. | ||
- | ||
- You should have received a copy of the GNU Affero General Public License | ||
- along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
- | ||
--> | ||
|
||
<template> | ||
<section id="general_settings" class="federation section"> | ||
<h2> | ||
{{ t('spreed', 'Federation') }} | ||
<small>{{ t('spreed', 'Beta') }}</small> | ||
</h2> | ||
|
||
<NcCheckboxRadioSwitch :checked="isFederationEnabled" | ||
:disabled="loading" | ||
type="switch" | ||
@update:checked="saveFederationEnabled"> | ||
{{ t('spreed', 'Enable Federation in Talk app') }} | ||
</NcCheckboxRadioSwitch> | ||
</section> | ||
</template> | ||
|
||
<script> | ||
import { loadState } from '@nextcloud/initial-state' | ||
|
||
import NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js' | ||
|
||
export default { | ||
name: 'Federation', | ||
|
||
components: { | ||
NcCheckboxRadioSwitch, | ||
}, | ||
|
||
data() { | ||
return { | ||
loading: false, | ||
isFederationEnabled: loadState('spreed', 'federation_enabled') === 'yes', | ||
} | ||
}, | ||
|
||
methods: { | ||
saveFederationEnabled(value) { | ||
this.loading = true | ||
|
||
OCP.AppConfig.setValue('spreed', 'federation_enabled', value ? 'yes' : 'no', { | ||
success: function() { | ||
this.loading = false | ||
this.isFederationEnabled = value | ||
}.bind(this), | ||
}) | ||
}, | ||
}, | ||
} | ||
</script> | ||
|
||
<style scoped lang="scss"> | ||
small { | ||
color: var(--color-warning); | ||
border: 1px solid var(--color-warning); | ||
border-radius: 16px; | ||
padding: 0 9px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters