Show group feeds for members as well
Closes #646 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
0a482d238e
commit
da1fee2cc7
@ -79,6 +79,49 @@
|
|||||||
}"
|
}"
|
||||||
>{{ $t("Group settings") }}</b-button
|
>{{ $t("Group settings") }}</b-button
|
||||||
>
|
>
|
||||||
|
<b-dropdown
|
||||||
|
class="menu-dropdown"
|
||||||
|
aria-role="list"
|
||||||
|
v-if="isCurrentActorAGroupMember"
|
||||||
|
position="is-bottom-left"
|
||||||
|
>
|
||||||
|
<b-button
|
||||||
|
slot="trigger"
|
||||||
|
outlined
|
||||||
|
role="button"
|
||||||
|
icon-right="dots-horizontal"
|
||||||
|
>
|
||||||
|
</b-button>
|
||||||
|
<b-dropdown-item
|
||||||
|
aria-role="listitem"
|
||||||
|
v-if="ableToReport"
|
||||||
|
@click="isReportModalActive = true"
|
||||||
|
>
|
||||||
|
<span>
|
||||||
|
{{ $t("Report") }}
|
||||||
|
<b-icon icon="flag" />
|
||||||
|
</span>
|
||||||
|
</b-dropdown-item>
|
||||||
|
<hr class="dropdown-divider" />
|
||||||
|
<b-dropdown-item has-link aria-role="listitem">
|
||||||
|
<a
|
||||||
|
:href="`@${preferredUsername}/feed/atom`"
|
||||||
|
:title="$t('Atom feed for events and posts')"
|
||||||
|
>
|
||||||
|
{{ $t("RSS/Atom Feed") }}
|
||||||
|
<b-icon icon="rss" />
|
||||||
|
</a>
|
||||||
|
</b-dropdown-item>
|
||||||
|
<b-dropdown-item has-link aria-role="listitem">
|
||||||
|
<a
|
||||||
|
:href="`@${preferredUsername}/feed/ics`"
|
||||||
|
:title="$t('ICS feed for events')"
|
||||||
|
>
|
||||||
|
{{ $t("ICS/WebCal Feed") }}
|
||||||
|
<b-icon icon="calendar-sync" />
|
||||||
|
</a>
|
||||||
|
</b-dropdown-item>
|
||||||
|
</b-dropdown>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -456,6 +499,7 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</b-modal>
|
</b-modal>
|
||||||
|
</div>
|
||||||
<b-modal
|
<b-modal
|
||||||
:active.sync="isReportModalActive"
|
:active.sync="isReportModalActive"
|
||||||
has-modal-card
|
has-modal-card
|
||||||
@ -469,7 +513,6 @@
|
|||||||
/>
|
/>
|
||||||
</b-modal>
|
</b-modal>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
Loading…
Reference in New Issue
Block a user