diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-18 20:12:32 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-18 20:12:32 +0800 |
commit | d1a1358c447175bdfd2c44f0baf2f53201ed096a (patch) | |
tree | 01c05bcab641654b21b7ff9a09ebf03df49aaa03 /acl.go | |
parent | Remove underscores from Go code, pt 1 (diff) | |
download | forge-d1a1358c447175bdfd2c44f0baf2f53201ed096a.tar.gz forge-d1a1358c447175bdfd2c44f0baf2f53201ed096a.tar.zst forge-d1a1358c447175bdfd2c44f0baf2f53201ed096a.zip |
gofumpt
Diffstat (limited to '')
-rw-r--r-- | acl.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ import ( // get_path_perm_by_group_repo_key returns the filesystem path and direct // access permission for a given repo and a provided ssh public key. -func get_path_perm_by_group_repo_key(ctx context.Context, group_path []string, repo_name, ssh_pubkey string) (repo_id int, filesystem_path string, access bool, contrib_requirements string, user_type string, user_id int, err error) { +func get_path_perm_by_group_repo_key(ctx context.Context, group_path []string, repo_name, ssh_pubkey string) (repo_id int, filesystem_path string, access bool, contrib_requirements, user_type string, user_id int, err error) { err = database.QueryRow(ctx, ` WITH RECURSIVE group_path_cte AS ( -- Start: match the first name in the path where parent_group IS NULL |