Skip to content

Commit

Permalink
fix: add return on end of files
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmelati committed Aug 21, 2024
1 parent c9916a2 commit 14bb539
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import com.sphereon.oid.fed.openapi.models.SubordinateAdminDTO
import com.sphereon.oid.fed.persistence.models.Subordinate
import com.sphereon.oid.fed.services.SubordinateService
import com.sphereon.oid.fed.services.extensions.toSubordinateAdminDTO
import org.springframework.web.bind.annotation.*
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.PathVariable
import org.springframework.web.bind.annotation.PostMapping
import org.springframework.web.bind.annotation.RequestBody
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RestController

@RestController
@RequestMapping("/accounts/{accountUsername}/subordinates")
Expand All @@ -25,4 +30,4 @@ class SubordinateController {
): Subordinate {
return subordinateService.createSubordinate(accountUsername, subordinate)
}
}
}

0 comments on commit 14bb539

Please sign in to comment.