Lev Khoroshansky

Results 68 comments of Lev Khoroshansky

Thanks, looking forward to it.

Sorry to ask, but is there any update on this?

Yep, looks good to me! (Although, I'm not sure whether Cristi will approve this.)

Migration to TS has been started in branch https://github.com/hse-mtc/dal/tree/deps/migrate-to-typescript-via-plugin

TypeScript is now fully supported. Now we need to migrate all JS code to TS.

Regconf for Teachers is implemented in: * 795b8b41f5c6d162e57573d50d5e73ed84ee3870 * deb8695d46985cd4bdaa566dd4998f8b014c8f71 * daf80bb151f7c3c44b9b77371c5a070ac91ee7ba Still needed for Students (and, possibly, Staff?).

Useful libraries: * https://github.com/guigrpa/docx-templates * https://github.com/dolanmiu/docx

Hey! Thanks for your response :) > * Please check if you authenticated correctly I'm using service account saved as JSON. This service account should have the necessary permissions, but...

> I'm quite sure this is related to the way your app is authenticated. How did you generate that JSON file? Is there anything unusual about it? I downloaded this...

Here's the initialization bit: ```rust let google_rest_client = Arc::new( gcloud_sdk::GoogleRestApi::with_token_source( TokenSourceType::File("./google-service-account.json".into()), GCP_DEFAULT_SCOPES.clone(), ) .await?, ); ``` I assume `GCP_DEFAULT_SCOPES` should work since the error message differs from the one you...