How do I see what repositories each user or group has access to?

Jason Caylor June 24, 2014

I need to find out what repositories and projects each user has access to and what level of access they have. Something similar to the Permission Helper in Jira but for Stash would work great. It would be ideal to see the repositories and/or projects on the user's profile page as an administrator (or maybe a link to acquire the list quickly).

Does this exist?

5 answers

1 accepted

4 votes
Answer accepted
Jason Caylor July 9, 2014

I guess we may end up writing a plugin for this fundamental functionality...

Balázs Szakmáry
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 10, 2014

Please publish it if you really do, I would use it too.

5 votes
Mark Hoover September 21, 2018

I know the original question is old, but the following queries might help somebody:

 

select distinct(group_name) from sta_project_permission order by group_name;
select distinct(group_name) from sta_repo_permission order by group_name;
select distinct(group_name) from sta_global_permission order by group_name;

 

According to postgres, these appear to be all the tables with a group_name column:

  • cwd_app_dir_group_mapping
  • cwd_group
  • sta_global_permission
  • sta_project_permission
  • sta_repo_permission

I also searched for group_id and got:

  • cwd_group_attribute

 

So while the three queries above may not be complete, the column name searches lead me to believe I'm good.

Mark Hoover October 12, 2018

Just an update for something a little more informative.

 

Repository permissions:

SELECT
  group_name as "Group",
  project_key as "Project Key",
  repo_name as "Repository Name",
  project_name as "Project Name"
FROM
  sta_repo_permission srp
  INNER JOIN (
    SELECT
      repository.id, repository.name as repo_name, project.name as project_name, project.project_key
    FROM repository
    INNER JOIN project on repository.project_id = project.id) repo on srp.repo_id = repo.id
WHERE
  group_name is not null;

 

Project permissions:

SELECT
  group_name as "Group",
  name as "Project Name",
  project_key as "Project Key"
FROM
  sta_project_permission spp
  INNER JOIN project on spp.project_id = project.id
WHERE
  group_name is not null;
Like # people like this
Azfar Masut
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 1, 2019

Thanks Mark! 

2 votes
Johannes Kilian
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 30, 2014

I haven't seen anything like this existing yet

A possible solution might be using the REST-API (https://developer.atlassian.com/static/rest/stash/3.0.1/stash-rest.html#idp788096) perfroming the following steps:

Hint: you have to be admin to get a comprehensive list of ALL repositories ...

1 vote
binary September 17, 2018

Do we still not have this feature?

Axel Heider September 17, 2018

seems not

FSC SI BTN Atos September 18, 2018

Nope, as often with Atlassian essential tools are not provided.

0 votes
Robbie Lewis July 31, 2020

This is really annoying and just leads to us contacting support when it happens.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events