1
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
2026-05-10 22:28:47 +08:00
parent d0a9348e72
commit 85ed8ca90c
14 changed files with 315 additions and 53 deletions

View File

@@ -28,7 +28,6 @@ pub struct UserAccount {
pub(crate) password_hash: String,
pub(crate) password_login_enabled: bool,
pub(crate) token_version: u64,
#[default(Vec::<String>::new())]
pub(crate) user_tags: Vec<String>,
}

View File

@@ -26,11 +26,14 @@ use module_puzzle::{
tag_similarity_score,
};
use module_runtime::RuntimeProfileWalletLedgerSourceType;
use module_runtime::visible_runtime_profile_user_tags;
use serde_json::from_str as json_from_str;
use serde_json::json;
use serde_json::to_string as json_to_string;
use spacetimedb::{ProcedureContext, SpacetimeType, Table, Timestamp, TxContext};
use crate::auth::user_account;
const PUZZLE_POINT_INCENTIVE_DEFAULT_U64: u64 = 0;
/// 拼图 Agent session 真相表。

View File

@@ -191,7 +191,6 @@ pub struct ProfileInviteCode {
pub(crate) starts_at: Option<Timestamp>,
#[default(None::<Timestamp>)]
pub(crate) expires_at: Option<Timestamp>,
#[default(Vec::<String>::new())]
pub(crate) granted_user_tags: Vec<String>,
}