Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
Update API Client
Browse files Browse the repository at this point in the history
  • Loading branch information
authentik-automation[bot] committed Feb 8, 2024
1 parent 53a929c commit 608e6bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build:
-c /local/config.yaml
rm -rf ./test
rm -f .travis.yml git_push.sh
grep -r -l true * | xargs sed -i 's/truetrue/true/g'
grep -r -l true * | xargs sed -i 's/true/true/g'

diff:
docker run \
Expand Down
4 changes: 2 additions & 2 deletions authentikClient/Classes/OpenAPIs/APIs/CoreAPI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ open class CoreAPI {

let localVariableRequestBuilder: RequestBuilder<CurrentBrand>.Type = authentikClientAPI.requestBuilderFactory.getBuilder()

return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters, requiresAuthentication: truetrue)
return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters, requiresAuthentication: true)
}

/**
Expand Down Expand Up @@ -2750,7 +2750,7 @@ open class CoreAPI {

let localVariableRequestBuilder: RequestBuilder<SessionUser>.Type = authentikClientAPI.requestBuilderFactory.getBuilder()

return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters, requiresAuthentication: truetrue)
return localVariableRequestBuilder.init(method: "GET", URLString: (localVariableUrlComponents?.string ?? localVariableURLString), parameters: localVariableParameters, headers: localVariableHeaderParameters, requiresAuthentication: true)
}

/**
Expand Down

0 comments on commit 608e6bd

Please sign in to comment.