mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Merge pull request #2461 from gradido/2332-mark-contribution-as-rejected
feat(backend): deny contributions
This commit is contained in:
commit
de0724e51e
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -478,7 +478,7 @@ jobs:
|
|||||||
report_name: Coverage Admin Interface
|
report_name: Coverage Admin Interface
|
||||||
type: lcov
|
type: lcov
|
||||||
result_path: ./coverage/lcov.info
|
result_path: ./coverage/lcov.info
|
||||||
min_coverage: 95
|
min_coverage: 96
|
||||||
token: ${{ github.token }}
|
token: ${{ github.token }}
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|||||||
@ -5,6 +5,7 @@ const localVue = global.localVue
|
|||||||
|
|
||||||
const apolloMutateMock = jest.fn().mockResolvedValue({})
|
const apolloMutateMock = jest.fn().mockResolvedValue({})
|
||||||
const apolloQueryMock = jest.fn().mockResolvedValue({})
|
const apolloQueryMock = jest.fn().mockResolvedValue({})
|
||||||
|
const toggleDetailsMock = jest.fn()
|
||||||
|
|
||||||
const propsData = {
|
const propsData = {
|
||||||
items: [
|
items: [
|
||||||
@ -138,5 +139,50 @@ describe('OpenCreationsTable', () => {
|
|||||||
expect(wrapper.vm.items[0].creation).toEqual([444, 555, 666])
|
expect(wrapper.vm.items[0].creation).toEqual([444, 555, 666])
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe('call updateState', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
wrapper.vm.updateState(4)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('emits update-state', () => {
|
||||||
|
expect(wrapper.vm.$root.$emit('update-state', 4)).toBeTruthy()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('call updateCreationData', () => {
|
||||||
|
const date = new Date()
|
||||||
|
beforeEach(() => {
|
||||||
|
wrapper.vm.updateCreationData({
|
||||||
|
amount: Number(80.0),
|
||||||
|
date: date,
|
||||||
|
memo: 'Test memo',
|
||||||
|
row: {
|
||||||
|
item: {},
|
||||||
|
detailsShowing: false,
|
||||||
|
toggleDetails: toggleDetailsMock,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('emits update-state', () => {
|
||||||
|
expect(
|
||||||
|
wrapper.vm.$emit('update-contributions', {
|
||||||
|
amount: Number(80.0),
|
||||||
|
date: date,
|
||||||
|
memo: 'Test memo',
|
||||||
|
row: {
|
||||||
|
item: {},
|
||||||
|
detailsShowing: false,
|
||||||
|
toggleDetails: toggleDetailsMock,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
).toBeTruthy()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('calls toggleDetails', () => {
|
||||||
|
expect(toggleDetailsMock).toBeCalled()
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
@click="$emit('remove-creation', row.item)"
|
@click="$emit('remove-creation', row.item)"
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
>
|
>
|
||||||
<b-icon icon="x" variant="light"></b-icon>
|
<b-icon icon="trash" variant="light"></b-icon>
|
||||||
</b-button>
|
</b-button>
|
||||||
</template>
|
</template>
|
||||||
<template #cell(editCreation)="row">
|
<template #cell(editCreation)="row">
|
||||||
@ -49,6 +49,18 @@
|
|||||||
</b-button>
|
</b-button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
<template #cell(deny)="row">
|
||||||
|
<div v-if="$store.state.moderator.id !== row.item.userId">
|
||||||
|
<b-button
|
||||||
|
variant="danger"
|
||||||
|
size="md"
|
||||||
|
@click="$emit('deny-creation', row.item)"
|
||||||
|
class="mr-2"
|
||||||
|
>
|
||||||
|
<b-icon icon="x" variant="light"></b-icon>
|
||||||
|
</b-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<template #row-details="row">
|
<template #row-details="row">
|
||||||
<row-details
|
<row-details
|
||||||
:row="row"
|
:row="row"
|
||||||
|
|||||||
7
admin/src/graphql/denyContribution.js
Normal file
7
admin/src/graphql/denyContribution.js
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import gql from 'graphql-tag'
|
||||||
|
|
||||||
|
export const denyContribution = gql`
|
||||||
|
mutation ($id: Int!) {
|
||||||
|
denyContribution(id: $id)
|
||||||
|
}
|
||||||
|
`
|
||||||
@ -35,6 +35,7 @@
|
|||||||
"creation_failed": "Ausstehende Schöpfung für {email} konnte nicht erzeugt werden.",
|
"creation_failed": "Ausstehende Schöpfung für {email} konnte nicht erzeugt werden.",
|
||||||
"creation_for": "Aktives Grundeinkommen für",
|
"creation_for": "Aktives Grundeinkommen für",
|
||||||
"deleteNow": "Möchtest du diesen Beitrag zur Gemeinschaft wirklich löschen?",
|
"deleteNow": "Möchtest du diesen Beitrag zur Gemeinschaft wirklich löschen?",
|
||||||
|
"denyNow": "Möchtest du diesen Beitrag zur Gemeinschaft wirklich ablehnen?",
|
||||||
"enter_text": "Text eintragen",
|
"enter_text": "Text eintragen",
|
||||||
"form": "Schöpfungsformular",
|
"form": "Schöpfungsformular",
|
||||||
"min_characters": "Mindestens 10 Zeichen eingeben",
|
"min_characters": "Mindestens 10 Zeichen eingeben",
|
||||||
@ -45,6 +46,7 @@
|
|||||||
"toasted": "Offene Schöpfung ({value} GDD) für {email} wurde gespeichert und liegt zur Bestätigung bereit",
|
"toasted": "Offene Schöpfung ({value} GDD) für {email} wurde gespeichert und liegt zur Bestätigung bereit",
|
||||||
"toasted_created": "Schöpfung wurde erfolgreich gespeichert",
|
"toasted_created": "Schöpfung wurde erfolgreich gespeichert",
|
||||||
"toasted_delete": "Offene Schöpfung wurde gelöscht",
|
"toasted_delete": "Offene Schöpfung wurde gelöscht",
|
||||||
|
"toasted_denied": "Offene Schöpfung wurde abgelehnt",
|
||||||
"toasted_update": "`Offene Schöpfung {value} GDD) für {email} wurde geändert und liegt zur Bestätigung bereit",
|
"toasted_update": "`Offene Schöpfung {value} GDD) für {email} wurde geändert und liegt zur Bestätigung bereit",
|
||||||
"update_creation": "Schöpfung aktualisieren"
|
"update_creation": "Schöpfung aktualisieren"
|
||||||
},
|
},
|
||||||
@ -54,6 +56,7 @@
|
|||||||
"deleted": "gelöscht",
|
"deleted": "gelöscht",
|
||||||
"deleted_user": "Alle gelöschten Nutzer",
|
"deleted_user": "Alle gelöschten Nutzer",
|
||||||
"delete_user": "Nutzer löschen",
|
"delete_user": "Nutzer löschen",
|
||||||
|
"deny": "Ablehnen",
|
||||||
"edit": "Bearbeiten",
|
"edit": "Bearbeiten",
|
||||||
"enabled": "aktiviert",
|
"enabled": "aktiviert",
|
||||||
"error": "Fehler",
|
"error": "Fehler",
|
||||||
|
|||||||
@ -35,6 +35,7 @@
|
|||||||
"creation_failed": "Could not create pending creation for {email}",
|
"creation_failed": "Could not create pending creation for {email}",
|
||||||
"creation_for": "Active Basic Income for",
|
"creation_for": "Active Basic Income for",
|
||||||
"deleteNow": "Do you really want to delete this contribution to the community?",
|
"deleteNow": "Do you really want to delete this contribution to the community?",
|
||||||
|
"denyNow": "Do you really want to reject this contribution to the community?",
|
||||||
"enter_text": "Enter text",
|
"enter_text": "Enter text",
|
||||||
"form": "Creation form",
|
"form": "Creation form",
|
||||||
"min_characters": "Enter at least 10 characters",
|
"min_characters": "Enter at least 10 characters",
|
||||||
@ -45,6 +46,7 @@
|
|||||||
"toasted": "Open creation ({value} GDD) for {email} has been saved and is ready for confirmation.",
|
"toasted": "Open creation ({value} GDD) for {email} has been saved and is ready for confirmation.",
|
||||||
"toasted_created": "Creation has been successfully saved",
|
"toasted_created": "Creation has been successfully saved",
|
||||||
"toasted_delete": "Open creation has been deleted",
|
"toasted_delete": "Open creation has been deleted",
|
||||||
|
"toasted_denied": "Open creation has been denied",
|
||||||
"toasted_update": "Open creation {value} GDD) for {email} has been changed and is ready for confirmation.",
|
"toasted_update": "Open creation {value} GDD) for {email} has been changed and is ready for confirmation.",
|
||||||
"update_creation": "Creation update"
|
"update_creation": "Creation update"
|
||||||
},
|
},
|
||||||
@ -54,6 +56,7 @@
|
|||||||
"deleted": "deleted",
|
"deleted": "deleted",
|
||||||
"deleted_user": "All deleted user",
|
"deleted_user": "All deleted user",
|
||||||
"delete_user": "Delete user",
|
"delete_user": "Delete user",
|
||||||
|
"deny": "Reject",
|
||||||
"edit": "Edit",
|
"edit": "Edit",
|
||||||
"enabled": "enabled",
|
"enabled": "enabled",
|
||||||
"error": "Error",
|
"error": "Error",
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
import { mount } from '@vue/test-utils'
|
import { mount } from '@vue/test-utils'
|
||||||
import CreationConfirm from './CreationConfirm.vue'
|
import CreationConfirm from './CreationConfirm.vue'
|
||||||
import { adminDeleteContribution } from '../graphql/adminDeleteContribution'
|
import { adminDeleteContribution } from '../graphql/adminDeleteContribution'
|
||||||
|
import { denyContribution } from '../graphql/denyContribution'
|
||||||
import { listUnconfirmedContributions } from '../graphql/listUnconfirmedContributions'
|
import { listUnconfirmedContributions } from '../graphql/listUnconfirmedContributions'
|
||||||
import { confirmContribution } from '../graphql/confirmContribution'
|
import { confirmContribution } from '../graphql/confirmContribution'
|
||||||
import { toastErrorSpy, toastSuccessSpy } from '../../test/testSetup'
|
import { toastErrorSpy, toastSuccessSpy } from '../../test/testSetup'
|
||||||
@ -75,6 +76,7 @@ describe('CreationConfirm', () => {
|
|||||||
|
|
||||||
const listUnconfirmedContributionsMock = jest.fn()
|
const listUnconfirmedContributionsMock = jest.fn()
|
||||||
const adminDeleteContributionMock = jest.fn()
|
const adminDeleteContributionMock = jest.fn()
|
||||||
|
const adminDenyContributionMock = jest.fn()
|
||||||
const confirmContributionMock = jest.fn()
|
const confirmContributionMock = jest.fn()
|
||||||
|
|
||||||
mockClient.setRequestHandler(
|
mockClient.setRequestHandler(
|
||||||
@ -89,6 +91,13 @@ describe('CreationConfirm', () => {
|
|||||||
adminDeleteContributionMock.mockResolvedValue({ data: { adminDeleteContribution: true } }),
|
adminDeleteContributionMock.mockResolvedValue({ data: { adminDeleteContribution: true } }),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
mockClient.setRequestHandler(
|
||||||
|
denyContribution,
|
||||||
|
adminDenyContributionMock
|
||||||
|
.mockRejectedValueOnce({ message: 'Ouch!' })
|
||||||
|
.mockResolvedValue({ data: { denyContribution: true } }),
|
||||||
|
)
|
||||||
|
|
||||||
mockClient.setRequestHandler(
|
mockClient.setRequestHandler(
|
||||||
confirmContribution,
|
confirmContribution,
|
||||||
confirmContributionMock.mockResolvedValue({ data: { confirmContribution: true } }),
|
confirmContributionMock.mockResolvedValue({ data: { confirmContribution: true } }),
|
||||||
@ -243,5 +252,59 @@ describe('CreationConfirm', () => {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe('deny creation with error', () => {
|
||||||
|
let spy
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
spy = jest.spyOn(wrapper.vm.$bvModal, 'msgBoxConfirm')
|
||||||
|
spy.mockImplementation(() => Promise.resolve('some value'))
|
||||||
|
await wrapper.findAll('tr').at(1).findAll('button').at(0).trigger('click')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('toasts an error message', () => {
|
||||||
|
expect(toastErrorSpy).toBeCalledWith('Ouchhh!')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('deny creation with success', () => {
|
||||||
|
let spy
|
||||||
|
|
||||||
|
describe('admin confirms deny', () => {
|
||||||
|
beforeEach(async () => {
|
||||||
|
spy = jest.spyOn(wrapper.vm.$bvModal, 'msgBoxConfirm')
|
||||||
|
spy.mockImplementation(() => Promise.resolve('some value'))
|
||||||
|
await wrapper.findAll('tr').at(1).findAll('button').at(3).trigger('click')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('opens a modal', () => {
|
||||||
|
expect(spy).toBeCalled()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('calls the adminDeleteContribution mutation', () => {
|
||||||
|
expect(adminDenyContributionMock).toBeCalledWith({ id: 1 })
|
||||||
|
})
|
||||||
|
|
||||||
|
it('commits openCreationsMinus to store', () => {
|
||||||
|
expect(storeCommitMock).toBeCalledWith('openCreationsMinus', 1)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('toasts a success message', () => {
|
||||||
|
expect(toastSuccessSpy).toBeCalledWith('creation_form.toasted_denied')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('admin cancels deny', () => {
|
||||||
|
beforeEach(async () => {
|
||||||
|
spy = jest.spyOn(wrapper.vm.$bvModal, 'msgBoxConfirm')
|
||||||
|
spy.mockImplementation(() => Promise.resolve(false))
|
||||||
|
await wrapper.findAll('tr').at(1).findAll('button').at(3).trigger('click')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('does not call the adminDeleteContribution mutation', () => {
|
||||||
|
expect(adminDenyContributionMock).not.toBeCalled()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@ -7,6 +7,7 @@
|
|||||||
class="mt-4"
|
class="mt-4"
|
||||||
:items="pendingCreations"
|
:items="pendingCreations"
|
||||||
:fields="fields"
|
:fields="fields"
|
||||||
|
@deny-creation="denyCreation"
|
||||||
@remove-creation="removeCreation"
|
@remove-creation="removeCreation"
|
||||||
@show-overlay="showOverlay"
|
@show-overlay="showOverlay"
|
||||||
@update-state="updateState"
|
@update-state="updateState"
|
||||||
@ -20,6 +21,7 @@ import OpenCreationsTable from '../components/Tables/OpenCreationsTable.vue'
|
|||||||
import { listUnconfirmedContributions } from '../graphql/listUnconfirmedContributions'
|
import { listUnconfirmedContributions } from '../graphql/listUnconfirmedContributions'
|
||||||
import { adminDeleteContribution } from '../graphql/adminDeleteContribution'
|
import { adminDeleteContribution } from '../graphql/adminDeleteContribution'
|
||||||
import { confirmContribution } from '../graphql/confirmContribution'
|
import { confirmContribution } from '../graphql/confirmContribution'
|
||||||
|
import { denyContribution } from '../graphql/denyContribution'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CreationConfirm',
|
name: 'CreationConfirm',
|
||||||
@ -35,6 +37,26 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
denyCreation(item) {
|
||||||
|
this.$bvModal.msgBoxConfirm(this.$t('creation_form.denyNow')).then(async (value) => {
|
||||||
|
if (value) {
|
||||||
|
await this.$apollo
|
||||||
|
.mutate({
|
||||||
|
mutation: denyContribution,
|
||||||
|
variables: {
|
||||||
|
id: item.id,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.then((result) => {
|
||||||
|
this.updatePendingCreations(item.id)
|
||||||
|
this.toastSuccess(this.$t('creation_form.toasted_denied'))
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
this.toastError(error.message)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
removeCreation(item) {
|
removeCreation(item) {
|
||||||
this.$bvModal.msgBoxConfirm(this.$t('creation_form.deleteNow')).then(async (value) => {
|
this.$bvModal.msgBoxConfirm(this.$t('creation_form.deleteNow')).then(async (value) => {
|
||||||
if (value)
|
if (value)
|
||||||
@ -110,6 +132,7 @@ export default {
|
|||||||
{ key: 'moderator', label: this.$t('moderator') },
|
{ key: 'moderator', label: this.$t('moderator') },
|
||||||
{ key: 'editCreation', label: this.$t('edit') },
|
{ key: 'editCreation', label: this.$t('edit') },
|
||||||
{ key: 'confirm', label: this.$t('save') },
|
{ key: 'confirm', label: this.$t('save') },
|
||||||
|
{ key: 'deny', label: this.$t('deny') },
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@ -54,4 +54,5 @@ export enum RIGHTS {
|
|||||||
DELETE_CONTRIBUTION_LINK = 'DELETE_CONTRIBUTION_LINK',
|
DELETE_CONTRIBUTION_LINK = 'DELETE_CONTRIBUTION_LINK',
|
||||||
UPDATE_CONTRIBUTION_LINK = 'UPDATE_CONTRIBUTION_LINK',
|
UPDATE_CONTRIBUTION_LINK = 'UPDATE_CONTRIBUTION_LINK',
|
||||||
ADMIN_CREATE_CONTRIBUTION_MESSAGE = 'ADMIN_CREATE_CONTRIBUTION_MESSAGE',
|
ADMIN_CREATE_CONTRIBUTION_MESSAGE = 'ADMIN_CREATE_CONTRIBUTION_MESSAGE',
|
||||||
|
DENY_CONTRIBUTION = 'DENY_CONTRIBUTION',
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,7 +9,7 @@ import {
|
|||||||
sendAccountActivationEmail,
|
sendAccountActivationEmail,
|
||||||
sendAccountMultiRegistrationEmail,
|
sendAccountMultiRegistrationEmail,
|
||||||
sendContributionConfirmedEmail,
|
sendContributionConfirmedEmail,
|
||||||
sendContributionRejectedEmail,
|
sendContributionDeniedEmail,
|
||||||
sendResetPasswordEmail,
|
sendResetPasswordEmail,
|
||||||
sendTransactionLinkRedeemedEmail,
|
sendTransactionLinkRedeemedEmail,
|
||||||
sendTransactionReceivedEmail,
|
sendTransactionReceivedEmail,
|
||||||
@ -360,9 +360,9 @@ describe('sendEmailVariants', () => {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('sendContributionRejectedEmail', () => {
|
describe('sendContributionDeniedEmail', () => {
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
result = await sendContributionRejectedEmail({
|
result = await sendContributionDeniedEmail({
|
||||||
firstName: 'Peter',
|
firstName: 'Peter',
|
||||||
lastName: 'Lustig',
|
lastName: 'Lustig',
|
||||||
email: 'peter@lustig.de',
|
email: 'peter@lustig.de',
|
||||||
@ -379,7 +379,7 @@ describe('sendEmailVariants', () => {
|
|||||||
receiver: {
|
receiver: {
|
||||||
to: 'Peter Lustig <peter@lustig.de>',
|
to: 'Peter Lustig <peter@lustig.de>',
|
||||||
},
|
},
|
||||||
template: 'contributionRejected',
|
template: 'contributionDenied',
|
||||||
locals: {
|
locals: {
|
||||||
firstName: 'Peter',
|
firstName: 'Peter',
|
||||||
lastName: 'Lustig',
|
lastName: 'Lustig',
|
||||||
|
|||||||
@ -103,7 +103,7 @@ export const sendContributionConfirmedEmail = (data: {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export const sendContributionRejectedEmail = (data: {
|
export const sendContributionDeniedEmail = (data: {
|
||||||
firstName: string
|
firstName: string
|
||||||
lastName: string
|
lastName: string
|
||||||
email: string
|
email: string
|
||||||
@ -114,7 +114,7 @@ export const sendContributionRejectedEmail = (data: {
|
|||||||
}): Promise<Record<string, unknown> | null> => {
|
}): Promise<Record<string, unknown> | null> => {
|
||||||
return sendEmailTranslated({
|
return sendEmailTranslated({
|
||||||
receiver: { to: `${data.firstName} ${data.lastName} <${data.email}>` },
|
receiver: { to: `${data.firstName} ${data.lastName} <${data.email}>` },
|
||||||
template: 'contributionRejected',
|
template: 'contributionDenied',
|
||||||
locals: {
|
locals: {
|
||||||
firstName: data.firstName,
|
firstName: data.firstName,
|
||||||
lastName: data.lastName,
|
lastName: data.lastName,
|
||||||
|
|||||||
16
backend/src/emails/templates/contributionDenied/html.pug
Normal file
16
backend/src/emails/templates/contributionDenied/html.pug
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
doctype html
|
||||||
|
html(lang=locale)
|
||||||
|
head
|
||||||
|
title= t('emails.contributionDenied.subject')
|
||||||
|
body
|
||||||
|
h1(style='margin-bottom: 24px;')= t('emails.contributionDenied.subject')
|
||||||
|
#container.col
|
||||||
|
include ../hello.pug
|
||||||
|
p= t('emails.contributionDenied.commonGoodContributionDenied', { senderFirstName, senderLastName, contributionMemo })
|
||||||
|
p= t('emails.contributionDenied.toSeeContributionsAndMessages')
|
||||||
|
p
|
||||||
|
= t('emails.general.linkToYourAccount')
|
||||||
|
= " "
|
||||||
|
a(href=overviewURL) #{overviewURL}
|
||||||
|
p= t('emails.general.pleaseDoNotReply')
|
||||||
|
include ../greatingFormularImprint.pug
|
||||||
@ -0,0 +1 @@
|
|||||||
|
= t('emails.contributionDenied.subject')
|
||||||
@ -1,16 +0,0 @@
|
|||||||
doctype html
|
|
||||||
html(lang=locale)
|
|
||||||
head
|
|
||||||
title= t('emails.contributionRejected.subject')
|
|
||||||
body
|
|
||||||
h1(style='margin-bottom: 24px;')= t('emails.contributionRejected.subject')
|
|
||||||
#container.col
|
|
||||||
include ../hello.pug
|
|
||||||
p= t('emails.contributionRejected.commonGoodContributionRejected', { senderFirstName, senderLastName, contributionMemo })
|
|
||||||
p= t('emails.contributionRejected.toSeeContributionsAndMessages')
|
|
||||||
p
|
|
||||||
= t('emails.general.linkToYourAccount')
|
|
||||||
= " "
|
|
||||||
a(href=overviewURL) #{overviewURL}
|
|
||||||
p= t('emails.general.pleaseDoNotReply')
|
|
||||||
include ../greatingFormularImprint.pug
|
|
||||||
@ -1 +0,0 @@
|
|||||||
= t('emails.contributionRejected.subject')
|
|
||||||
@ -18,6 +18,8 @@ export class Contribution {
|
|||||||
this.contributionDate = contribution.contributionDate
|
this.contributionDate = contribution.contributionDate
|
||||||
this.state = contribution.contributionStatus
|
this.state = contribution.contributionStatus
|
||||||
this.messagesCount = contribution.messages ? contribution.messages.length : 0
|
this.messagesCount = contribution.messages ? contribution.messages.length : 0
|
||||||
|
this.deniedAt = contribution.deniedAt
|
||||||
|
this.deniedBy = contribution.deniedBy
|
||||||
}
|
}
|
||||||
|
|
||||||
@Field(() => Number)
|
@Field(() => Number)
|
||||||
@ -47,6 +49,12 @@ export class Contribution {
|
|||||||
@Field(() => Number, { nullable: true })
|
@Field(() => Number, { nullable: true })
|
||||||
confirmedBy: number | null
|
confirmedBy: number | null
|
||||||
|
|
||||||
|
@Field(() => Date, { nullable: true })
|
||||||
|
deniedAt: Date | null
|
||||||
|
|
||||||
|
@Field(() => Number, { nullable: true })
|
||||||
|
deniedBy: number | null
|
||||||
|
|
||||||
@Field(() => Date)
|
@Field(() => Date)
|
||||||
contributionDate: Date
|
contributionDate: Date
|
||||||
|
|
||||||
|
|||||||
@ -50,7 +50,7 @@ import { eventProtocol } from '@/event/EventProtocolEmitter'
|
|||||||
import { calculateDecay } from '@/util/decay'
|
import { calculateDecay } from '@/util/decay'
|
||||||
import {
|
import {
|
||||||
sendContributionConfirmedEmail,
|
sendContributionConfirmedEmail,
|
||||||
sendContributionRejectedEmail,
|
sendContributionDeniedEmail,
|
||||||
} from '@/emails/sendEmailVariants'
|
} from '@/emails/sendEmailVariants'
|
||||||
import { TRANSACTIONS_LOCK } from '@/util/TRANSACTIONS_LOCK'
|
import { TRANSACTIONS_LOCK } from '@/util/TRANSACTIONS_LOCK'
|
||||||
|
|
||||||
@ -217,7 +217,7 @@ export class ContributionResolver {
|
|||||||
const user = getUser(context)
|
const user = getUser(context)
|
||||||
|
|
||||||
const contributionToUpdate = await DbContribution.findOne({
|
const contributionToUpdate = await DbContribution.findOne({
|
||||||
where: { id: contributionId, confirmedAt: IsNull() },
|
where: { id: contributionId, confirmedAt: IsNull(), deniedAt: IsNull() },
|
||||||
})
|
})
|
||||||
if (!contributionToUpdate) {
|
if (!contributionToUpdate) {
|
||||||
logger.error('No contribution found to given id')
|
logger.error('No contribution found to given id')
|
||||||
@ -409,7 +409,7 @@ export class ContributionResolver {
|
|||||||
const moderator = getUser(context)
|
const moderator = getUser(context)
|
||||||
|
|
||||||
const contributionToUpdate = await DbContribution.findOne({
|
const contributionToUpdate = await DbContribution.findOne({
|
||||||
where: { id, confirmedAt: IsNull() },
|
where: { id, confirmedAt: IsNull(), deniedAt: IsNull() },
|
||||||
})
|
})
|
||||||
if (!contributionToUpdate) {
|
if (!contributionToUpdate) {
|
||||||
logger.error('No contribution found to given id.')
|
logger.error('No contribution found to given id.')
|
||||||
@ -475,6 +475,7 @@ export class ContributionResolver {
|
|||||||
.from(DbContribution, 'c')
|
.from(DbContribution, 'c')
|
||||||
.leftJoinAndSelect('c.messages', 'm')
|
.leftJoinAndSelect('c.messages', 'm')
|
||||||
.where({ confirmedAt: IsNull() })
|
.where({ confirmedAt: IsNull() })
|
||||||
|
.andWhere({ deniedAt: IsNull() })
|
||||||
.getMany()
|
.getMany()
|
||||||
|
|
||||||
if (contributions.length === 0) {
|
if (contributions.length === 0) {
|
||||||
@ -540,7 +541,7 @@ export class ContributionResolver {
|
|||||||
await eventProtocol.writeEvent(
|
await eventProtocol.writeEvent(
|
||||||
event.setEventAdminContributionDelete(eventAdminContributionDelete),
|
event.setEventAdminContributionDelete(eventAdminContributionDelete),
|
||||||
)
|
)
|
||||||
sendContributionRejectedEmail({
|
sendContributionDeniedEmail({
|
||||||
firstName: user.firstName,
|
firstName: user.firstName,
|
||||||
lastName: user.lastName,
|
lastName: user.lastName,
|
||||||
email: user.emailContact.email,
|
email: user.emailContact.email,
|
||||||
@ -572,6 +573,10 @@ export class ContributionResolver {
|
|||||||
logger.error(`Contribution already confirmd: ${id}`)
|
logger.error(`Contribution already confirmd: ${id}`)
|
||||||
throw new Error('Contribution already confirmd.')
|
throw new Error('Contribution already confirmd.')
|
||||||
}
|
}
|
||||||
|
if (contribution.contributionStatus === 'DENIED') {
|
||||||
|
logger.error(`Contribution already denied: ${id}`)
|
||||||
|
throw new Error('Contribution already denied.')
|
||||||
|
}
|
||||||
const moderatorUser = getUser(context)
|
const moderatorUser = getUser(context)
|
||||||
if (moderatorUser.id === contribution.userId) {
|
if (moderatorUser.id === contribution.userId) {
|
||||||
logger.error('Moderator can not confirm own contribution')
|
logger.error('Moderator can not confirm own contribution')
|
||||||
@ -684,6 +689,7 @@ export class ContributionResolver {
|
|||||||
.from(DbContribution, 'c')
|
.from(DbContribution, 'c')
|
||||||
.leftJoinAndSelect('c.user', 'u')
|
.leftJoinAndSelect('c.user', 'u')
|
||||||
.where(`user_id = ${userId}`)
|
.where(`user_id = ${userId}`)
|
||||||
|
.withDeleted()
|
||||||
.limit(pageSize)
|
.limit(pageSize)
|
||||||
.offset(offset)
|
.offset(offset)
|
||||||
.orderBy('c.created_at', order)
|
.orderBy('c.created_at', order)
|
||||||
@ -714,4 +720,58 @@ export class ContributionResolver {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Authorized([RIGHTS.DENY_CONTRIBUTION])
|
||||||
|
@Mutation(() => Boolean)
|
||||||
|
async denyContribution(
|
||||||
|
@Arg('id', () => Int) id: number,
|
||||||
|
@Ctx() context: Context,
|
||||||
|
): Promise<boolean> {
|
||||||
|
const contributionToUpdate = await DbContribution.findOne({
|
||||||
|
id,
|
||||||
|
confirmedAt: IsNull(),
|
||||||
|
deniedBy: IsNull(),
|
||||||
|
})
|
||||||
|
if (!contributionToUpdate) {
|
||||||
|
logger.error(`Contribution not found for given id: ${id}`)
|
||||||
|
throw new Error(`Contribution not found for given id.`)
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
contributionToUpdate.contributionStatus !== ContributionStatus.IN_PROGRESS &&
|
||||||
|
contributionToUpdate.contributionStatus !== ContributionStatus.PENDING
|
||||||
|
) {
|
||||||
|
logger.error(
|
||||||
|
`Contribution state (${contributionToUpdate.contributionStatus}) is not allowed.`,
|
||||||
|
)
|
||||||
|
throw new Error(`State of the contribution is not allowed.`)
|
||||||
|
}
|
||||||
|
const moderator = getUser(context)
|
||||||
|
const user = await DbUser.findOne(
|
||||||
|
{ id: contributionToUpdate.userId },
|
||||||
|
{ relations: ['emailContact'] },
|
||||||
|
)
|
||||||
|
if (!user) {
|
||||||
|
logger.error(
|
||||||
|
`Could not find User for the Contribution (userId: ${contributionToUpdate.userId}).`,
|
||||||
|
)
|
||||||
|
throw new Error('Could not find User for the Contribution.')
|
||||||
|
}
|
||||||
|
|
||||||
|
contributionToUpdate.contributionStatus = ContributionStatus.DENIED
|
||||||
|
contributionToUpdate.deniedBy = moderator.id
|
||||||
|
contributionToUpdate.deniedAt = new Date()
|
||||||
|
const res = await contributionToUpdate.save()
|
||||||
|
|
||||||
|
sendContributionDeniedEmail({
|
||||||
|
firstName: user.firstName,
|
||||||
|
lastName: user.lastName,
|
||||||
|
email: user.emailContact.email,
|
||||||
|
language: user.language,
|
||||||
|
senderFirstName: moderator.firstName,
|
||||||
|
senderLastName: moderator.lastName,
|
||||||
|
contributionMemo: contributionToUpdate.memo,
|
||||||
|
})
|
||||||
|
|
||||||
|
return !!res
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,8 +23,8 @@
|
|||||||
"commonGoodContributionConfirmed": "Your public good contribution “{contributionMemo}” has just been confirmed by {senderFirstName} {senderLastName} and credited to your Gradido account.",
|
"commonGoodContributionConfirmed": "Your public good contribution “{contributionMemo}” has just been confirmed by {senderFirstName} {senderLastName} and credited to your Gradido account.",
|
||||||
"subject": "Gradido: Your contribution to the common good was confirmed"
|
"subject": "Gradido: Your contribution to the common good was confirmed"
|
||||||
},
|
},
|
||||||
"contributionRejected": {
|
"contributionDenied": {
|
||||||
"commonGoodContributionRejected": "Your public good contribution “{contributionMemo}” was rejected by {senderFirstName} {senderLastName}.",
|
"commonGoodContributionDenied": "Your public good contribution “{contributionMemo}” was rejected by {senderFirstName} {senderLastName}.",
|
||||||
"subject": "Gradido: Your common good contribution was rejected",
|
"subject": "Gradido: Your common good contribution was rejected",
|
||||||
"toSeeContributionsAndMessages": "To see your common good contributions and related messages, go to the “Community” menu in your Gradido account and click on the “My contributions to the common good” tab!"
|
"toSeeContributionsAndMessages": "To see your common good contributions and related messages, go to the “Community” menu in your Gradido account and click on the “My contributions to the common good” tab!"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -33,6 +33,10 @@
|
|||||||
<div class="small">
|
<div class="small">
|
||||||
{{ $t('creation') }} {{ $t('(') }}{{ amount / 20 }} {{ $t('h') }}{{ $t(')') }}
|
{{ $t('creation') }} {{ $t('(') }}{{ amount / 20 }} {{ $t('h') }}{{ $t(')') }}
|
||||||
</div>
|
</div>
|
||||||
|
<div v-if="state === 'DENIED' && allContribution" class="font-weight-bold">
|
||||||
|
<b-icon icon="x-circle" variant="danger"></b-icon>
|
||||||
|
{{ $t('contribution.alert.denied') }}
|
||||||
|
</div>
|
||||||
<div v-if="state === 'DELETED'" class="small">
|
<div v-if="state === 'DELETED'" class="small">
|
||||||
{{ $t('contribution.deleted') }}
|
{{ $t('contribution.deleted') }}
|
||||||
</div>
|
</div>
|
||||||
@ -146,6 +150,14 @@ export default {
|
|||||||
type: String,
|
type: String,
|
||||||
required: false,
|
required: false,
|
||||||
},
|
},
|
||||||
|
deniedBy: {
|
||||||
|
type: Number,
|
||||||
|
required: false,
|
||||||
|
},
|
||||||
|
deniedAt: {
|
||||||
|
type: String,
|
||||||
|
required: false,
|
||||||
|
},
|
||||||
state: {
|
state: {
|
||||||
type: String,
|
type: String,
|
||||||
required: false,
|
required: false,
|
||||||
@ -175,12 +187,14 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
icon() {
|
icon() {
|
||||||
if (this.deletedAt) return 'trash'
|
if (this.deletedAt) return 'trash'
|
||||||
|
if (this.deniedAt) return 'x-circle'
|
||||||
if (this.confirmedAt) return 'check'
|
if (this.confirmedAt) return 'check'
|
||||||
if (this.state === 'IN_PROGRESS') return 'question-circle'
|
if (this.state === 'IN_PROGRESS') return 'question-circle'
|
||||||
return 'bell-fill'
|
return 'bell-fill'
|
||||||
},
|
},
|
||||||
variant() {
|
variant() {
|
||||||
if (this.deletedAt) return 'danger'
|
if (this.deletedAt) return 'danger'
|
||||||
|
if (this.deniedAt) return 'warning'
|
||||||
if (this.confirmedAt) return 'success'
|
if (this.confirmedAt) return 'success'
|
||||||
if (this.state === 'IN_PROGRESS') return 'f5'
|
if (this.state === 'IN_PROGRESS') return 'f5'
|
||||||
return 'primary'
|
return 'primary'
|
||||||
|
|||||||
@ -55,7 +55,7 @@ describe('ContributionInfo', () => {
|
|||||||
expect(listItems.at(2).text()).toBe('contribution.alert.confirm')
|
expect(listItems.at(2).text()).toBe('contribution.alert.confirm')
|
||||||
|
|
||||||
expect(listItems.at(3).find('svg').attributes('aria-label')).toEqual('x circle')
|
expect(listItems.at(3).find('svg').attributes('aria-label')).toEqual('x circle')
|
||||||
expect(listItems.at(3).text()).toBe('contribution.alert.rejected')
|
expect(listItems.at(3).text()).toBe('contribution.alert.denied')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -72,7 +72,7 @@ describe('ContributionInfo', () => {
|
|||||||
expect(wrapper.find('p').text()).toBe('contribution.alert.communityNoteList')
|
expect(wrapper.find('p').text()).toBe('contribution.alert.communityNoteList')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('has a legend to explain the icons', () => {
|
it.skip('has a legend to explain the icons', () => {
|
||||||
const listItems = wrapper.findAll('li')
|
const listItems = wrapper.findAll('li')
|
||||||
|
|
||||||
expect(listItems.at(0).find('svg').attributes('aria-label')).toEqual('bell fill')
|
expect(listItems.at(0).find('svg').attributes('aria-label')).toEqual('bell fill')
|
||||||
|
|||||||
@ -19,8 +19,8 @@
|
|||||||
{{ $t('contribution.alert.confirm') }}
|
{{ $t('contribution.alert.confirm') }}
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<b-icon icon="x-circle" variant="danger"></b-icon>
|
<b-icon icon="x-circle" variant="warning"></b-icon>
|
||||||
{{ $t('contribution.alert.rejected') }}
|
{{ $t('contribution.alert.denied') }}
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<b-icon icon="trash" variant="danger"></b-icon>
|
<b-icon icon="trash" variant="danger"></b-icon>
|
||||||
@ -33,16 +33,6 @@
|
|||||||
<p>
|
<p>
|
||||||
{{ $t('contribution.alert.communityNoteList') }}
|
{{ $t('contribution.alert.communityNoteList') }}
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<b-icon icon="bell-fill" variant="primary"></b-icon>
|
|
||||||
{{ $t('contribution.alert.pending') }}
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<b-icon icon="check" variant="success"></b-icon>
|
|
||||||
{{ $t('contribution.alert.confirm') }}
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-if="hash === '#edit'" show fade variant="secondary" class="text-dark">
|
<div v-if="hash === '#edit'" show fade variant="secondary" class="text-dark">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@ -183,6 +183,8 @@ export const listContributions = gql`
|
|||||||
deletedAt
|
deletedAt
|
||||||
state
|
state
|
||||||
messagesCount
|
messagesCount
|
||||||
|
deniedAt
|
||||||
|
deniedBy
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -202,6 +204,10 @@ export const listAllContributions = gql`
|
|||||||
contributionDate
|
contributionDate
|
||||||
confirmedAt
|
confirmedAt
|
||||||
confirmedBy
|
confirmedBy
|
||||||
|
state
|
||||||
|
messagesCount
|
||||||
|
deniedAt
|
||||||
|
deniedBy
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -42,10 +42,10 @@
|
|||||||
"communityNoteList": "Hier findest du alle eingereichten und bestätigten Beiträge von allen Mitgliedern aus dieser Gemeinschaft.",
|
"communityNoteList": "Hier findest du alle eingereichten und bestätigten Beiträge von allen Mitgliedern aus dieser Gemeinschaft.",
|
||||||
"confirm": "bestätigt",
|
"confirm": "bestätigt",
|
||||||
"deleted": "gelöscht",
|
"deleted": "gelöscht",
|
||||||
|
"denied": "abgelehnt",
|
||||||
"in_progress": "Es gibt eine Rückfrage der Moderatoren.",
|
"in_progress": "Es gibt eine Rückfrage der Moderatoren.",
|
||||||
"myContributionNoteList": "Eingereichte Beiträge, die noch nicht bestätigt wurden, kannst du jederzeit bearbeiten oder löschen.",
|
"myContributionNoteList": "Eingereichte Beiträge, die noch nicht bestätigt wurden, kannst du jederzeit bearbeiten oder löschen.",
|
||||||
"pending": "Eingereicht und wartet auf Bestätigung",
|
"pending": "Eingereicht und wartet auf Bestätigung"
|
||||||
"rejected": "abgelehnt"
|
|
||||||
},
|
},
|
||||||
"delete": "Beitrag löschen! Bist du sicher?",
|
"delete": "Beitrag löschen! Bist du sicher?",
|
||||||
"deleted": "Der Beitrag wurde gelöscht! Wird aber sichtbar bleiben.",
|
"deleted": "Der Beitrag wurde gelöscht! Wird aber sichtbar bleiben.",
|
||||||
|
|||||||
@ -42,10 +42,10 @@
|
|||||||
"communityNoteList": "Here you will find all submitted and confirmed contributions from all members of this community.",
|
"communityNoteList": "Here you will find all submitted and confirmed contributions from all members of this community.",
|
||||||
"confirm": "confirmed",
|
"confirm": "confirmed",
|
||||||
"deleted": "deleted",
|
"deleted": "deleted",
|
||||||
|
"denied": "rejected",
|
||||||
"in_progress": "There is a question from the moderators.",
|
"in_progress": "There is a question from the moderators.",
|
||||||
"myContributionNoteList": "You can edit or delete entries that have not yet been confirmed at any time.",
|
"myContributionNoteList": "You can edit or delete entries that have not yet been confirmed at any time.",
|
||||||
"pending": "Submitted and waiting for confirmation",
|
"pending": "Submitted and waiting for confirmation"
|
||||||
"rejected": "deleted"
|
|
||||||
},
|
},
|
||||||
"delete": "Delete Contribution! Are you sure?",
|
"delete": "Delete Contribution! Are you sure?",
|
||||||
"deleted": "The contribution has been deleted! But it will remain visible.",
|
"deleted": "The contribution has been deleted! But it will remain visible.",
|
||||||
|
|||||||
@ -39,10 +39,10 @@
|
|||||||
"answerQuestion": "Por favor, contesta las preguntas",
|
"answerQuestion": "Por favor, contesta las preguntas",
|
||||||
"communityNoteList": "Aquí encontrarás todas las contribuciones enviadas y confirmadas de todos los miembros de esta comunidad.",
|
"communityNoteList": "Aquí encontrarás todas las contribuciones enviadas y confirmadas de todos los miembros de esta comunidad.",
|
||||||
"confirm": "confirmado",
|
"confirm": "confirmado",
|
||||||
|
"denied": "rechazado",
|
||||||
"in_progress": "Hay una pregunta de los moderatores.",
|
"in_progress": "Hay una pregunta de los moderatores.",
|
||||||
"myContributionNoteList": "Puedes editar o eliminar las contribuciones enviadas que aún no han sido confirmadas en cualquier momento.",
|
"myContributionNoteList": "Puedes editar o eliminar las contribuciones enviadas que aún no han sido confirmadas en cualquier momento.",
|
||||||
"pending": "Enviado y a la espera de confirmación",
|
"pending": "Enviado y a la espera de confirmación"
|
||||||
"rejected": "rechazado"
|
|
||||||
},
|
},
|
||||||
"date": "Contribución para:",
|
"date": "Contribución para:",
|
||||||
"delete": "Eliminar la contribución. ¿Estás seguro?",
|
"delete": "Eliminar la contribución. ¿Estás seguro?",
|
||||||
|
|||||||
@ -41,10 +41,10 @@
|
|||||||
"communityNoteList": "Vous trouverez ci-contre toutes les contributions versées et certifiées de tous les membres de cette communauté.",
|
"communityNoteList": "Vous trouverez ci-contre toutes les contributions versées et certifiées de tous les membres de cette communauté.",
|
||||||
"confirm": "Approuvé",
|
"confirm": "Approuvé",
|
||||||
"deleted": "Supprimé",
|
"deleted": "Supprimé",
|
||||||
|
"denied": "supprimé",
|
||||||
"in_progress": "Il y a une question du modérateur.",
|
"in_progress": "Il y a une question du modérateur.",
|
||||||
"myContributionNoteList": "À tout moment vous pouvez éditer ou supprimer les données qui n´ont pas été confirmées.",
|
"myContributionNoteList": "À tout moment vous pouvez éditer ou supprimer les données qui n´ont pas été confirmées.",
|
||||||
"pending": "Inscription en attente de validation",
|
"pending": "Inscription en attente de validation"
|
||||||
"rejected": "supprimé"
|
|
||||||
},
|
},
|
||||||
"date": "Contribution pour:",
|
"date": "Contribution pour:",
|
||||||
"delete": "Supprimer la contribution! Êtes-vous sûr?",
|
"delete": "Supprimer la contribution! Êtes-vous sûr?",
|
||||||
|
|||||||
@ -39,10 +39,10 @@
|
|||||||
"answerQuestion": "Please answer the question",
|
"answerQuestion": "Please answer the question",
|
||||||
"communityNoteList": "Hier vind je alle ingediende en bevestigde bijdragen van alle leden uit deze gemeenschap.",
|
"communityNoteList": "Hier vind je alle ingediende en bevestigde bijdragen van alle leden uit deze gemeenschap.",
|
||||||
"confirm": "bevestigt",
|
"confirm": "bevestigt",
|
||||||
|
"denied": "afgewezen",
|
||||||
"in_progress": "There is a question from the moderators.",
|
"in_progress": "There is a question from the moderators.",
|
||||||
"myContributionNoteList": "Ingediende bijdragen, die nog niet bevestigd zijn, kun je op elk moment wijzigen of verwijderen.",
|
"myContributionNoteList": "Ingediende bijdragen, die nog niet bevestigd zijn, kun je op elk moment wijzigen of verwijderen.",
|
||||||
"pending": "Ingediend en wacht op bevestiging",
|
"pending": "Ingediend en wacht op bevestiging"
|
||||||
"rejected": "afgewezen"
|
|
||||||
},
|
},
|
||||||
"date": "Bijdrage voor:",
|
"date": "Bijdrage voor:",
|
||||||
"delete": "Bijdrage verwijderen! Weet je het zeker?",
|
"delete": "Bijdrage verwijderen! Weet je het zeker?",
|
||||||
|
|||||||
@ -34,10 +34,10 @@
|
|||||||
"alert": {
|
"alert": {
|
||||||
"communityNoteList": "Burada, bu topluluğun tüm üyelerinden gönderilen ve onaylanan bütün faydalı hizmetleri bulacaksın.",
|
"communityNoteList": "Burada, bu topluluğun tüm üyelerinden gönderilen ve onaylanan bütün faydalı hizmetleri bulacaksın.",
|
||||||
"confirm": "onaylandı",
|
"confirm": "onaylandı",
|
||||||
|
"denied": "reddedildi",
|
||||||
"myContributionNoteList": "Bildirmiş olduğun henüz onaylanmamış olan faaliyetleri istediğin zaman düzenleyebilir veya silebilirsin.",
|
"myContributionNoteList": "Bildirmiş olduğun henüz onaylanmamış olan faaliyetleri istediğin zaman düzenleyebilir veya silebilirsin.",
|
||||||
"myContributionNoteSupport": "Yakın zamanda moderatörlerle aranda bir diyalog olasılığı olacak. Şu anda herhangi bir sorun yaşıyorsan, lütfen destek hattına başvur.",
|
"myContributionNoteSupport": "Yakın zamanda moderatörlerle aranda bir diyalog olasılığı olacak. Şu anda herhangi bir sorun yaşıyorsan, lütfen destek hattına başvur.",
|
||||||
"pending": "Gönderildi ve onay bekleniyor",
|
"pending": "Gönderildi ve onay bekleniyor"
|
||||||
"rejected": "reddedildi"
|
|
||||||
},
|
},
|
||||||
"date": "Hizmet:",
|
"date": "Hizmet:",
|
||||||
"delete": "Hizmeti sil! Emin misin?",
|
"delete": "Hizmeti sil! Emin misin?",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user