Skip to content

Commit 48e0b4e

Browse files
authored
Merge pull request #10 from zcsadmin/9-aggiunto-setauthinfo-in-requeststate-refs-ap-2014
add setAuthInfo
2 parents f3145a2 + 0bd2513 commit 48e0b4e

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

app/src/zcs/core/session/request_state.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ def getAuthInfo(self) -> Optional[AuthInfo]:
2626
"""
2727

2828
return self.__auth_info
29+
30+
def setAuthInfo(self, auth_info: AuthInfo):
31+
"""
32+
Set authentication information.
33+
"""
34+
35+
self.__auth_info = auth_info
2936

3037
def getOpCode(self) -> str:
3138
"""

0 commit comments

Comments
 (0)