Project returns the URL for a project in the frontend.
(org, project string)
| 340 | |
| 341 | // Project returns the URL for a project in the frontend. |
| 342 | func (u *URLs) Project(org, project string) string { |
| 343 | return urlutil.MustJoinURL(u.Frontend(), org, project) |
| 344 | } |
| 345 | |
| 346 | // ProjectInviteAccept returns the URL for accepting a project invite. |
| 347 | func (u *URLs) ProjectInviteAccept(org, project string) string { |
no test coverage detected