File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 25
25
source : 'package.json'
26
26
} ;
27
27
}
28
- } catch ( error ) {
28
+ } catch {
29
29
// Use static fallback if package.json can't be read
30
30
}
31
31
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ export const registerRoutes = (server: FastifyInstance): void => {
74
74
} , 'Checking version display setting' ) ;
75
75
76
76
// Build base response
77
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
77
78
const response : Record < string , any > = {
78
79
message : 'DeployStack Backend is running.' ,
79
80
status : server . db ? 'Database Connected' : 'Database Not Configured/Connected - Use /api/db/status and /api/db/setup' ,
Original file line number Diff line number Diff line change 7
7
CreateTeamSchema ,
8
8
UpdateTeamSchema ,
9
9
TeamResponseSchema ,
10
- TeamsListResponseSchema ,
11
10
TeamsListWithRoleInfoResponseSchema ,
12
11
TeamMembersListResponseSchema ,
13
12
TeamMemberResponseSchema ,
@@ -689,7 +688,7 @@ export default async function teamsRoute(fastify: FastifyInstance) {
689
688
}
690
689
691
690
// Add the member
692
- const membership = await TeamService . addTeamMember ( teamId , validatedData . userId , validatedData . role ) ;
691
+ await TeamService . addTeamMember ( teamId , validatedData . userId , validatedData . role ) ;
693
692
694
693
// Get the full member info to return
695
694
const members = await TeamService . getTeamMembersWithUserInfo ( teamId ) ;
You can’t perform that action at this time.
0 commit comments