We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d33323d commit abaf4d6Copy full SHA for abaf4d6
lib/src/auth/codelessly_auth_manager.dart
@@ -9,6 +9,8 @@ import 'package:jwt_decoder/jwt_decoder.dart';
9
10
import '../../codelessly_sdk.dart';
11
12
+const String clientType = String.fromEnvironment('client_type');
13
+
14
const String _label = 'Auth Manager';
15
16
/// An implementation of that uses Firebase auth.
@@ -382,6 +384,7 @@ class CodelesslyAuthManager extends AuthManager {
382
384
body: jsonEncode({
383
385
'token': config.authToken,
386
'slug': config.slug,
387
+ 'clientType': clientType,
388
}),
389
);
390
0 commit comments