Skip to content

Allow placeholder `:id` for group link route

What does this MR do?

Part of &4233 (closed)

I am working on converting the group members page from HAML to Vue. As part of this I need access to the group_link resource route on the frontend. Normally in HAML you can do group_group_link_path(group_link) to get the path with the resource ID. In Vue we don't have access to this helper so the easiest way is to pass the path with a placeholder and then replace the placeholder on the frontend.

Example

*.haml

.js-group-linked-list{ data: { member_path: group_group_link_path(id: ':id') } }

*.js

memberPath.replace(/:id$/, member.id)

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • [-] Label as security and @ mention @gitlab-com/gl-security/appsec
  • [-] The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • [-] Security reports checked/validated by a reviewer from the AppSec team
Edited by Peter Hegman

Merge request reports