Skip to content

Commit 72a1089

Browse files
committed
Final update
1 parent c87b716 commit 72a1089

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

api/src/main/java/io/sentrius/sso/controllers/view/IntegrationController.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,19 @@ public String createOpenAIIntegration(Model model, @RequestParam(name = "id", re
116116
return "sso/integrations/add_openai";
117117
}
118118

119+
@GetMapping("/slack")
120+
public String createSlackIntegration(Model model) {
121+
return getIntegrationDashboard(model);
122+
}
123+
124+
@GetMapping("/database")
125+
public String createDatabaseIntegration(Model model) {
126+
return getIntegrationDashboard(model);
127+
}
128+
129+
@GetMapping("/teams")
130+
public String createTeamsIntegration(Model model) {
131+
return getIntegrationDashboard(model);
132+
}
133+
119134
}

0 commit comments

Comments
 (0)