(account: Account)
| 40 | } |
| 41 | |
| 42 | export function openAccountProfile(account: Account) { |
| 43 | const url = new URL(`https://${account.hostname}`); |
| 44 | url.pathname = account.user!.login; |
| 45 | openExternalLink(url.toString() as Link); |
| 46 | } |
| 47 | |
| 48 | export function openUserProfile(user: GitifyNotificationUser) { |
| 49 | openExternalLink(user.htmlUrl); |
no test coverage detected