fix: user_id is string now

This commit is contained in:
linonetwo
2023-02-09 20:01:11 +08:00
parent ca060dbf7a
commit cee05b13e8
4 changed files with 5 additions and 5 deletions
+1 -2
View File
@@ -4,8 +4,7 @@ use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct CreateWorkspace {
// TODO: make all id string, on Octobase side, and rewrite all related tests
pub user_id: i32,
pub user_id: String,
/**
* only set name, avatar is update in datacenter to yDoc directly
*/
@@ -121,6 +121,7 @@ export class TauriIPCProvider extends LocalProvider {
): Promise<WorkspaceUnit | undefined> {
this._logger('Creating client app workspace');
assert(this.#ipc);
assert(this.#userID);
const { id } = await this.#ipc.createWorkspace({
name: meta.name,
// TODO: get userID here
@@ -151,6 +152,7 @@ export class TauriIPCProvider extends LocalProvider {
override async loadWorkspaces(): Promise<WorkspaceUnit[]> {
assert(this.#ipc);
assert(this.#userID);
const { workspaces } = await this.#ipc.getWorkspaces({
user_id: this.#userID,
});
@@ -83,8 +83,7 @@
"type": "string"
},
"user_id": {
"type": "integer",
"format": "int32"
"type": "string"
}
}
},
@@ -34,7 +34,7 @@ export interface CreateWorkspace {
* only set name, avatar is update in datacenter to yDoc directly
*/
name: string;
user_id: number;
user_id: string;
[k: string]: unknown;
}
export interface GetWorkspace {