Konstantin Yeftifeyev
Konstantin Yeftifeyev
I tried to write my own authorization: ``` class BasicValidator implements AuthValidator { @override List documentRequirementsForAuthorizer( APIDocumentContext context, Authorizer authorizer, {List scopes}) { return [ APISecurityRequirement({"securitySchemes": []}) ]; } @override...
**Steps to Reproduce** On real Android device. 1. Run release application. 2. Await when Isar is open. 3. Exit from app by tap Android back button. 4. Repeat steps 3...
Hello I have 3 table **A:** ```dart const gameTableName = 'games'; @Entity(tableName: gameTableName) class Game { const Game({ required this.id, required this.alias, required this.name, }); @primaryKey final String id; final...
I tried this code: ```rust use std::{env, sync::Arc}; use sea_orm::{Database, DatabaseConnection}; use teloxide::{dispatching::dialogue::GetChatId, prelude::*, types::LabeledPrice, utils::command::BotCommands}; mod commands; pub async fn run_telegram_bot() -> Result { let database_url = env::var("DATABASE_URL").expect("DATABASE_URL must...
#### Summary This PR updates the `build.gradle` file to improve compatibility with the latest Android Gradle Plugin (AGP) and Kotlin version, while also enhancing the project’s structure and testing capabilities....