File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,8 @@ export const deleteRepo = (_id: string): Promise<void> => sink.deleteRepo(_id);
180180export const findUser = ( username : string ) : Promise < User | null > => sink . findUser ( username ) ;
181181export const findUserByEmail = ( email : string ) : Promise < User | null > => sink . findUserByEmail ( email ) ;
182182export const findUserByOIDC = ( oidcId : string ) : Promise < User | null > => sink . findUserByOIDC ( oidcId ) ;
183+ export const findUserBySSHKey = ( sshKey : string ) : Promise < User | null > =>
184+ sink . findUserBySSHKey ( sshKey ) ;
183185export const getUsers = ( query ?: object ) : Promise < User [ ] > => sink . getUsers ( query ) ;
184186export const deleteUser = ( username : string ) : Promise < void > => sink . deleteUser ( username ) ;
185187export const updateUser = ( user : User ) : Promise < void > => sink . updateUser ( user ) ;
You can’t perform that action at this time.
0 commit comments