Skip to content

Commit

Permalink
Public API: Mark authorization input as nullable (#12266)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmossman committed Apr 25, 2024
1 parent 07c05cf commit 8f6396d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import java.util.UUID

interface UserService {
fun getAllWorkspaceIdsForUser(
authorization: String,
authorization: String?,
userInfo: String?,
): List<UUID>

Expand All @@ -35,7 +35,7 @@ open class UserServiceImpl(private val configApiClient: ConfigApiClient) : UserS
* Hits the listAllWorkspaces endpoint since OSS has only one user.
*/
override fun getAllWorkspaceIdsForUser(
authorization: String,
authorization: String?,
userInfo: String?,
): List<UUID> {
val response =
Expand Down

0 comments on commit 8f6396d

Please sign in to comment.