Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
lwjameson authored Jul 1, 2024
2 parents 57a1e7c + 2424aa7 commit 2112eb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/api/images.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ import { getMyProfile } from '@backend/crud';
import { createSupabaseServerClient } from '@backend/supabaseServerClient';
import type { APIRoute } from 'astro';

const IIIF_KEY = import.meta.env.IIIF_KEY || import.meta.env.RECOGITO_TIGER;
const IIIF_URL = import.meta.env.IIIF_URL;
const IIIF_PROJECT_ID = import.meta.env.IIIF_PROJECT_ID;
const IIIF_KEY = import.meta.env.IIIF_KEY;

export const POST: APIRoute = async ({ request, cookies }) => {

// Verify if the user is logged in
const supabase = await createSupabaseServerClient(cookies);

Expand Down

0 comments on commit 2112eb0

Please sign in to comment.