refactor: add 'show_exec' field to application access token response

This commit is contained in:
wxg0103 2025-07-11 15:13:11 +08:00
parent cdd146dc58
commit 2783d7dcde

View File

@ -121,6 +121,7 @@ class AccessTokenSerializer(serializers.Serializer):
'white_active': application_access_token.white_active,
'white_list': application_access_token.white_list,
'show_source': application_access_token.show_source,
'show_exec': application_access_token.show_exec,
'language': application_access_token.language,
**other,
}