156eba0551
Allow to exclude a member Send emails to the member when it's excluded Signed-off-by: Thomas Citharel <tcit@tcit.fr>
49 lines
1.4 KiB
Vue
49 lines
1.4 KiB
Vue
<template>
|
|
<aside class="section container">
|
|
<h1 class="title">{{ $t("Settings") }}</h1>
|
|
<div class="columns">
|
|
<aside class="column is-one-quarter-desktop">
|
|
<ul>
|
|
<SettingMenuSection :title="$t('Settings')" :to="{ name: RouteName.GROUP_SETTINGS }">
|
|
<SettingMenuItem
|
|
:title="this.$t('Public')"
|
|
:to="{ name: RouteName.GROUP_PUBLIC_SETTINGS }"
|
|
/>
|
|
<SettingMenuItem
|
|
:title="this.$t('Members')"
|
|
:to="{ name: RouteName.GROUP_MEMBERS_SETTINGS }"
|
|
/>
|
|
</SettingMenuSection>
|
|
</ul>
|
|
</aside>
|
|
<div class="column">
|
|
<router-view />
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
</template>
|
|
<script lang="ts">
|
|
import { Component, Vue, Watch } from "vue-property-decorator";
|
|
import { Route } from "vue-router";
|
|
import { IGroup, IPerson } from "@/types/actor";
|
|
import { FETCH_GROUP } from "@/graphql/group";
|
|
import RouteName from "../../router/name";
|
|
import SettingMenuSection from "../../components/Settings/SettingMenuSection.vue";
|
|
import SettingMenuItem from "../../components/Settings/SettingMenuItem.vue";
|
|
|
|
@Component({
|
|
components: { SettingMenuSection, SettingMenuItem },
|
|
})
|
|
export default class Settings extends Vue {
|
|
RouteName = RouteName;
|
|
|
|
group!: IGroup[];
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
aside.section {
|
|
padding-top: 1rem;
|
|
}
|
|
</style>
|