Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚧 Nouvelles conversations unifiées #944

Draft
wants to merge 40 commits into
base: develop
Choose a base branch
from

Conversation

glibersat
Copy link
Collaborator

Il s'agit de :

  • Une correction de bug
  • Une nouvelle fonctionnalité programmée
  • Une nouvelle fonctionnalité spontanée

Décrivez vos changements

Prototypage des nouvelles conversations unifiées

Checklist d'acceptation de revue de code

  • Aucun texte ne fait référence à du vocabulaire spécifique d'un métier
  • Mon code est auto-documenté ou la documentation a été mise à jour/créée
  • La gestion du multi-portail a été prise en compte
  • L'accessibilité a été prise en compte
  • Pre-commit est configuré et a été lancé
  • Des tests couvrant le code changé ont été ajoutés/modifiés
  • L'ensemble des tests front et back sont au vert

Demandes

  • Je souhaite un déploiement en préproduction

Comment on lines +293 to +298
project = get_object_or_404(
models.Project.objects.filter(sites=request.site).with_unread_notifications(
user_id=request.user.id
),
pk=project_id,
)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
project = get_object_or_404(
models.Project.objects.filter(sites=request.site).with_unread_notifications(
user_id=request.user.id
),
pk=project_id,
)
project = get_object_or_404(
models.Project.objects.filter(sites=request.site).with_unread_notifications(
user_id=request.user.id
).select_related("commune__department"),
pk=project_id,
)


feed.sort(key=lambda x: x["timestamp"])

return render(request, "projects/project/conversations_new.html", locals())
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Je me permets de remettre en question l'usage de locals. Pourquoi veut on passer toutes ces données aux templates?


advising = get_advisor_for_project(request.user, project)

is_regional_actor or has_perm_or_403(request.user, "view_public_notes", project)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On peut faire remonter has_perm_or_403 en haut de cette fonction, pour éviter de faire des requêtes si on est dans un cas de 403

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants