-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/shibui-1742' of bitbucket.org:unicon/shib-idp-u…
…i into feature/shibui-1742
- Loading branch information
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
...d/src/main/java/edu/internet2/tier/shibboleth/admin/ui/controller/ActivateController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| package edu.internet2.tier.shibboleth.admin.ui.controller; | ||
|
|
||
| import org.springframework.beans.factory.annotation.Autowired; | ||
| import org.springframework.web.bind.annotation.RequestMapping; | ||
| import org.springframework.web.bind.annotation.RestController; | ||
|
|
||
| import edu.internet2.tier.shibboleth.admin.ui.repository.EntityDescriptorRepository; | ||
| import edu.internet2.tier.shibboleth.admin.ui.security.service.UserService; | ||
|
|
||
| @RestController | ||
| @RequestMapping("/api/activate") | ||
| public class ActivateController { | ||
| @Autowired | ||
| private UserService userService; | ||
|
|
||
| @Autowired | ||
| private EntityDescriptorRepository entityDescriptorRepo; | ||
|
|
||
|
|
||
|
|
||
|
|
||
| // Enable/disable for : entity descriptor, provider, filter | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters