mirror of
https://github.com/appwrite/appwrite
synced 2026-05-14 04:28:24 +00:00
478 B
478 B
import { Client, Projects } from "@appwrite.io/console";
const client = new Client();
const projects = new Projects(client);
client .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ;
const promise = projects.updateAuthStatus('[PROJECT_ID]', 'email-password', false);
promise.then(function (response) { console.log(response); // Success }, function (error) { console.log(error); // Failure });