HTML5 notification actions with URI don't open view page

I have a script action like this:

service: notify.notify
data:
  message: '{{ message }}'
  title: Home Assistant
  data:
    actions:
      - action: URI
        uri: '{{ link }}'
        title: '{{ action_name }}'

I’ve set the variables as follows:

 message: Motion was detected in the condo!
 action_name: Check Camera
 link: /lovelace/security

image

For some reason, clicking the Check Camera action does not open the security view. I have also tried using the full https://... url and the OPEN action. That didn’t work either.

Am I doing something wrong?

I found out from Reddit that the URI action doesn’t work. To open a view from a html5 notification, it has to be setup like this:

service: notify.notify
data:
  title: Home Assistant
  message: '{{ message }}'
  data:
    url: '{{ link }}'

This method opens the link when clicking on the main notification body. Doing so from an action button apparently doesn’t work.

I’m trying to figure out what types of actions are supported with html5 notifications. Is there a list anywhere? The documentation doesn’t provide one.