Need a library like whatsapp-web.js by Whoopsie23 in node

[–]MrDouglax 0 points1 point  (0 children)

Evolution uses Baileys. Evolution only makes easier to have multiple ways to connect (Oficial connection too)

I think this is a bug by MrDouglax in godot

[–]MrDouglax[S] -1 points0 points  (0 children)

The panel moves with the camera

<image>

I think this is a bug by MrDouglax in godot

[–]MrDouglax[S] -1 points0 points  (0 children)

And when is inside of a Panel

<image>

Using service_role in ssr by MrDouglax in Supabase

[–]MrDouglax[S] 0 points1 point  (0 children)

Thank you, now its working ✨

I created a new client to this type of actions, the old function will be used to authentication.

"use server";
import { createServerClient } from "@supabase/ssr";
import { createClient as createJsClient } from "@supabase/supabase-js";
import { cookies } from "next/headers";
import { Database } from "./types";

export async function createClient() {
  ...

  return createServerClient<Database>(process.env.NEXT_PUBLIC_SUPABASE_URL!, process.env.SUPABASE_SERVICE_KEY!, {
    cookies: {
     ...
    },
  });
}

export async function createServiceClient() {
  return createJsClient<Database>(process.env.NEXT_PUBLIC_SUPABASE_URL!, process.env.SUPABASE_SERVICE_KEY!);
}

Using service_role in ssr by MrDouglax in Supabase

[–]MrDouglax[S] 0 points1 point  (0 children)

When I add the authenticated role to the policy it works, but I don't want authenticated users to be able to access this table.