/
githubmirror
/
gitness
Обзор
Документация
Войти
/
githubmirror
/
gitness
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/api/controller/user/wire.go
59 строк
2 KB
Marko Gaćeša
feat: [CODE-2554]: add commit and tag signature parse and verify (#3915)
02 июл 2025, 14:13
02 июл 2025, 14:13
7d0ffbf
Код
Авторство
О чём код?
// 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 user import ( "github.com/harness/gitness/app/auth/authz" userevents "github.com/harness/gitness/app/events/user" "github.com/harness/gitness/app/services/refcache" "github.com/harness/gitness/app/store" "github.com/harness/gitness/store/database/dbtx" "github.com/harness/gitness/types/check" "github.com/google/wire" ) var WireSet = wire.NewSet( ProvideController, ) func ProvideController( tx dbtx.Transactor, principalUIDCheck check.PrincipalUID, authorizer authz.Authorizer, principalStore store.PrincipalStore, tokenStore store.TokenStore, membershipStore store.MembershipStore, publicKeyStore store.PublicKeyStore, publicKeySubKeyStore store.PublicKeySubKeyStore, gitSignatureResultStore store.GitSignatureResultStore, eventReporter *userevents.Reporter, repoFinder refcache.RepoFinder, favoriteStore store.FavoriteStore, ) *Controller { return NewController( tx, principalUIDCheck, authorizer, principalStore, tokenStore, membershipStore, publicKeyStore, publicKeySubKeyStore, gitSignatureResultStore, eventReporter, repoFinder, favoriteStore) }