mirror of https://gitlab.crans.org/bde/nk20
Add developers, Opener comments
This commit is contained in:
parent
4be4a18dd1
commit
28117c8c61
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* On form submit, create a new friendship
|
||||
* On form submit, add a new opener
|
||||
*/
|
||||
function form_create_opener (e) {
|
||||
// Do not submit HTML form
|
||||
|
@ -16,9 +16,9 @@ function form_create_opener (e) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Create a trust between users
|
||||
* @param trusting:Integer trusting note id
|
||||
* @param trusted:Integer trusted note id
|
||||
* Add an opener between an activity and a user
|
||||
* @param activity:Integer activity id
|
||||
* @param opener:Integer user note id
|
||||
*/
|
||||
function create_opener(activity, opener) {
|
||||
$.post('/api/activity/opener/', {
|
||||
|
@ -28,36 +28,15 @@ function create_opener(activity, opener) {
|
|||
}).done(function () {
|
||||
// Reload tables
|
||||
$('#opener_table').load(location.pathname + ' #opener_table')
|
||||
addMsg(gettext('Friendship successfully added'), 'success')
|
||||
addMsg(gettext('Opener successfully added'), 'success')
|
||||
}).fail(function (xhr, _textStatus, _error) {
|
||||
errMsg(xhr.responseJSON)
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* On form submit, create a new friendship
|
||||
function create_opener (e) {
|
||||
// Do not submit HTML form
|
||||
e.preventDefault()
|
||||
|
||||
// Get data and send to API
|
||||
const formData = new FormData(e.target)
|
||||
$.post('/api/activity/opener/', {
|
||||
csrfmiddlewaretoken: formData.get('csrfmiddlewaretoken'),
|
||||
activity: formData.get('activity'),
|
||||
opener: formData.get('opener')
|
||||
}).done(function () {
|
||||
// Reload table
|
||||
$('#opener_table').load(location.pathname + ' #opener_table')
|
||||
addMsg(gettext('Alias successfully added'), 'success')
|
||||
}).fail(function (xhr, _textStatus, _error) {
|
||||
errMsg(xhr.responseJSON)
|
||||
})
|
||||
}*/
|
||||
|
||||
/**
|
||||
* On click of "delete", delete the trust
|
||||
* @param button_id:Integer Trust id to remove
|
||||
* On click of "delete", delete the opener
|
||||
* @param button_id:Integer Opener id to remove
|
||||
*/
|
||||
function delete_button (button_id) {
|
||||
$.ajax({
|
||||
|
@ -65,7 +44,7 @@ function delete_button (button_id) {
|
|||
method: 'DELETE',
|
||||
headers: { 'X-CSRFTOKEN': CSRF_TOKEN }
|
||||
}).done(function () {
|
||||
addMsg(gettext('Friendship successfully deleted'), 'success')
|
||||
addMsg(gettext('Opener successfully deleted'), 'success')
|
||||
$('#opener_table').load(location.pathname + ' #opener_table')
|
||||
}).fail(function (xhr, _textStatus, _error) {
|
||||
errMsg(xhr.responseJSON)
|
||||
|
|
12
docs/faq.rst
12
docs/faq.rst
|
@ -177,11 +177,13 @@ Contributeur⋅rices
|
|||
|
||||
Liste des contributeur⋅rices majeur⋅es, par ordre alphabétique :
|
||||
|
||||
* Pierre-André « PAC » COMBY
|
||||
* Emmy « ÿnérant » D'ANELLO
|
||||
* Benjamin « esum » GRAILLOT
|
||||
* Alexandre « erdnaxe » IOOSS
|
||||
* Nicolas « nicomarg » MARGULIES
|
||||
* bleizi
|
||||
* erdnaxe
|
||||
* esum
|
||||
* korenst1
|
||||
* nicomarg
|
||||
* PAC
|
||||
* ÿnérant
|
||||
|
||||
|
||||
Hébergement
|
||||
|
|
Loading…
Reference in New Issue