Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions geonode/base/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,9 @@ class BaseAppConfig(NotificationsAppConfigBase, AppConfig):
_("Request resource change"),
_("Owner has requested permissions to modify a resource"),
),
(
"resourcebase_created",
_("Resource is created"),
_("Resource is created"),
),
Comment on lines 40 to 43
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The description for the resourcebase_created notification is identical to the display name. To provide more clarity to users, consider elaborating on the description to specify the context or purpose of this notification.

For example, the description could be: "A notification sent when a new resource is successfully created in GeoNode."

        (
            "resourcebase_created",
            _("Resource is created"),
            _("A notification sent when a new resource is successfully created in GeoNode."),
        ),

)
Loading