elixir_google_spreadsheets icon indicating copy to clipboard operation
elixir_google_spreadsheets copied to clipboard

Split GSS.Registry into authorization and process management layers

Open Voronchuk opened this issue 6 years ago • 0 comments

Currently all spreadsheet process and Goth auth token are tracked by GSS.Registry module.

Put spreadsheet process tracking into a separate Elixir native Registry instance.

Scope out GSS.Auth module from a current GSS.Registry which will manage Goth auth token: headers = %{"Authorization" => "Bearer #{GSS.Auth.token}"} instead of headers = %{"Authorization" => "Bearer #{GSS.Registry.token}"}

Voronchuk avatar Mar 05 '18 18:03 Voronchuk