File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,14 @@ public class SupabaseOptions
32
32
public IGotrueSessionPersistence < Session > SessionHandler { get ; set ; } = new DefaultSupabaseSessionHandler ( ) ;
33
33
34
34
/// <summary>
35
- /// Headers that allow manual specifications of an "Authorization" to be passed to the supabase client.
36
- /// This is unlikely to be used.
35
+ /// Allows developer to specify options that will be passed to all child Supabase clients.
37
36
/// </summary>
38
- public Dictionary < string , string > Headers = new Dictionary < string , string > ( ) ;
37
+ public Dictionary < string , string > Headers = new ( ) ;
39
38
40
39
/// <summary>
41
40
/// Specifies Options passed to the StorageClient.
42
41
/// </summary>
43
- public Storage . ClientOptions StorageClientOptions { get ; set ; } = new Storage . ClientOptions ( ) ;
42
+ public Storage . ClientOptions StorageClientOptions { get ; set ; } = new ( ) ;
44
43
45
44
/// <summary>
46
45
/// The Supabase Auth Url Format
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ namespace SupabaseTests
10
10
[ TestClass ]
11
11
public class Client
12
12
{
13
- private static readonly Random Random = new Random ( ) ;
13
+ private static readonly Random Random = new ( ) ;
14
14
15
15
private Supabase . Client _instance ;
16
16
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class StatelessClient
14
14
{
15
15
16
16
private string supabaseUrl = "http://localhost" ;
17
- private Supabase . SupabaseOptions options = new Supabase . SupabaseOptions
17
+ private Supabase . SupabaseOptions options = new ( )
18
18
{
19
19
AuthUrlFormat = "{0}:9999" ,
20
20
RealtimeUrlFormat = "{0}:4000/socket" ,
You can’t perform that action at this time.
0 commit comments