Skip to content
GitLab
Explorer
Connexion
S'inscrire
Navigation principale
Rechercher ou aller à…
Projet
P
parlote-facil
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Compilation
Pipelines
Jobs
Planifications de pipeline
Artéfacts
Déploiement
Releases
Registre de paquets
Registre de conteneur
Registre de modèles
Opération
Environnements
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse CI/CD
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
facil
parlote-facil
Validations
d9e3f3a7
Valider
d9e3f3a7
rédigé
9 years ago
par
Steffen van Bergerem
Parcourir les fichiers
Options
Téléchargements
Plain Diff
Merge branch 'stable' into develop
parents
a967fe1f
9f2e5b18
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
2
Masquer les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
Changelog.md
+2
-1
2 ajouts, 1 suppression
Changelog.md
app/controllers/notifications_controller.rb
+3
-4
3 ajouts, 4 suppressions
app/controllers/notifications_controller.rb
avec
5 ajouts
et
5 suppressions
Changelog.md
+
2
−
1
Voir le fichier @
d9e3f3a7
...
...
@@ -129,9 +129,10 @@ Contributions are very welcome, the hard work is done!
## Bug fixes
*
Fix empty name field when editing aspect names
[
#6706
](
https://github.com/diaspora/diaspora/pull/6706
)
*
Fix internal server error when trying to log out of an expired session
[
#6707
](
https://github.com/diaspora/diaspora/pull/6707
)
*
Only mark unread notifications as read
[
#6711
](
https://github.com/diaspora/diaspora/pull/6711
)
## Features
*
Added the footer to conversation pages
*
Added the footer to conversation pages
[
#6710
](
https://github.com/diaspora/diaspora/pull/6710
)
# 0.5.7.0
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
app/controllers/notifications_controller.rb
+
3
−
4
Voir le fichier @
d9e3f3a7
...
...
@@ -61,9 +61,9 @@ class NotificationsController < ApplicationController
def
read_all
current_type
=
Notification
.
types
[
params
[
:type
]]
notifications
=
Notification
.
where
(
:
recipient_id
=>
current_user
.
id
)
notifications
=
notifications
.
where
(
:
type
=>
current_type
)
if
params
[
:type
]
notifications
.
update_all
(
:
unread
=>
false
)
notifications
=
Notification
.
where
(
recipient_id
:
current_user
.
id
,
unread:
true
)
notifications
=
notifications
.
where
(
type
:
current_type
)
if
params
[
:type
]
notifications
.
update_all
(
unread
:
false
)
respond_to
do
|
format
|
if
current_user
.
unread_notifications
.
count
>
0
format
.
html
{
redirect_to
notifications_path
}
...
...
@@ -75,7 +75,6 @@ class NotificationsController < ApplicationController
format
.
xml
{
render
:xml
=>
{}.
to_xml
}
format
.
json
{
render
:json
=>
{}.
to_json
}
end
end
end
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter