import {
Client,
Databases,
ID,
} from "https://deno.land/x/appwrite@7.0.0/mod.ts";
/**
* @param id ID of the user to be created. Leave blank to generate a unique ID.
*/
type Appwrite = {
endpoint: string;
project: string;
key: string;
self_signed: boolean;
};
export async function main(auth: Appwrite, name: string, id?: string) {
const client = new Client()
.setEndpoint(auth.endpoint)
.setProject(auth.project)
.setKey(auth.key);
const db = new Databases(client);
return await db.create(id || ID.unique(), name);
}
Submitted by admin 466 days ago
import { Client, Databases, ID } from "https://deno.land/x/appwrite@7.0.0/mod.ts";
/**
* @param id ID of the user to be created. Leave blank to generate a unique ID.
*/
type Appwrite = {
endpoint: string;
project: string;
key: string;
self_signed: boolean;
};
export async function main(
auth: Appwrite,
name: string,
id?: string,
) {
const client = new Client()
.setEndpoint(auth.endpoint)
.setProject(auth.project)
.setKey(auth.key)
const db = new Databases(client);
return await db.create(id || ID.unique(), name)
}
Submitted by admin 469 days ago
import { Resource } from "https://deno.land/x/windmill@v1.87.0/mod.ts"
import { Client, Databases, ID } from "https://deno.land/x/appwrite@7.0.0/mod.ts";
/**
* @param id ID of the user to be created. Leave blank to generate a unique ID.
*/
export async function main(
auth: Resource<'appwrite'>,
name: string,
id?: string,
) {
const client = new Client()
.setEndpoint(auth.endpoint)
.setProject(auth.project)
.setKey(auth.key)
const db = new Databases(client);
return await db.create(id || ID.unique(), name)
}
Submitted by adam186 584 days ago