mirror of
https://github.com/harness/drone.git
synced 2025-05-04 23:09:34 +08:00

* feat: [CODE-1941]: remove usergroup filter from request * feat: [CODE-1941]: decrement page for harness-core * feat: [CODE-1941]: update pagination request * feat: [CODE-1941]: change interface from find to list * feat: [CODE-1941]: change reviewer add permissions * feat: [CODE-1941]: comments * feat: [CODE-1941]: comments * fix wire issues * feat: [CODE-1941]: remove users from the db table usergroups * feat: [CODE-1941]: annotate errors * feat: [CODE-1941]: annotate errors * feat: [CODE-1941]: sql style * feat: [CODE-1941]: revert common.go change for parse limit * feat: [CODE-1941]: move usergroup listing to space level * feat: [CODE-1941]: update usergroup listing and update delete to push permission * feat: [CODE-1941]: Update combined listing * feat: [CODE-1941]: Update combined listing * feat: [CODE-1941]: format * feat: [CODE-1941]: rebase * feat: [CODE-1941]: separate db struct for usergroup.go * feat: [CODE-1941]: change usergroup filter to default query and review comments * feat: [CODE-1941]: change usergroup filter to default * feat: [CODE-1941]: change return type for search service interface * feat: [CODE-1941]: change return type for search service interface * feat: [CODE-1941]: change return type for search service interface * feat: [CODE-1941]: Search Service interface and wire changes * feat: [CODE-1941]: Search Service interface and wire changes * feat: [CODE-1941]: Search UserGroups Handler change - codeformat * feat: [CODE-1941]: Search UserGroups Handler change - codeformat * feat: [CODE-1941]: Search UserGroups Handler change - codeformat * feat: [CODE-1941]: Search UserGroups Handler change * feat: [CODE-1941]: Big change: New LOGIC for UserGroup Reviewers * feat: [CODE-1941]: DB changes * feat: [CODE-1941]: listing api * feat: [CODE-1941]: mapping methods * feat: [CODE-1941]: list method for pullreq_reviewers db * feat: [CODE-1941]: database queries * feat: [CODE-1941]: database queries * feat: [CODE-2058]: dbstore changes * feat: [CODE-1941]: Controller and Database code * feat: [CODE-1941]: update reviewer_add.go code * feat: [CODE-1941]: update reviewers and usergroup db migrations * feat: [CODE-1941]: Update API ops * feat: [CODE-1941]: Update DB ops for reviewers * feat: [CODE-1941]: db migration update * feat: [CODE-1941]: db migration update * feat: [CODE-1941]: code comments * feat: [CODE-1941]: update migration numbering * feat: [CODE-1941]: Add postgresql migrations * feat: [CODE-1941]: Update DB ops for reviewers feat: [CODE-1941]: Update API ops feat: [CODE-1941]: update reviewers and usergroup db migrations feat: [CODE-1941]: update reviewer_add.go code feat: [CODE-1941]: break pr feat: [CODE-1941]: break pr feat: [CODE-1941]: Update migration numbering * feat: [CODE-1941]: create table usergroups * feat: [CODE-1941]: table migrations * feat: [CODE-1941]: user group changes
43 lines
1.2 KiB
Go
43 lines
1.2 KiB
Go
// Copyright 2023 Harness, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package usergroup
|
|
|
|
import (
|
|
"github.com/harness/gitness/app/auth/authz"
|
|
"github.com/harness/gitness/app/services/usergroup"
|
|
"github.com/harness/gitness/app/store"
|
|
)
|
|
|
|
type Controller struct {
|
|
userGroupStore store.UserGroupStore
|
|
spaceStore store.SpaceStore
|
|
authorizer authz.Authorizer
|
|
searchSvc usergroup.SearchService
|
|
}
|
|
|
|
func NewController(
|
|
userGroupStore store.UserGroupStore,
|
|
spaceStore store.SpaceStore,
|
|
authorizer authz.Authorizer,
|
|
searchSvc usergroup.SearchService,
|
|
) *Controller {
|
|
return &Controller{
|
|
userGroupStore: userGroupStore,
|
|
spaceStore: spaceStore,
|
|
authorizer: authorizer,
|
|
searchSvc: searchSvc,
|
|
}
|
|
}
|