Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/GitlabAPI-Core/GitlabApi.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ GitlabApi >> client [
]

{ #category : 'accessing' }
GitlabApi >> client: aZnClient [
GitlabApi >> client: anObject [

client := aZnClient
client := anObject
]

{ #category : 'ressources' }
Expand Down Expand Up @@ -62,9 +62,9 @@ GitlabApi >> hostUrl: anObject [
{ #category : 'initialization' }
GitlabApi >> initialize [

(client := ZnClient new)
systemPolicy;
accept: ZnMimeType applicationJson
client := ZnClient new
accept: ZnMimeType applicationJson;
yourself
]

{ #category : 'ressources' }
Expand Down
Loading