- Enhanced AGENTS.md with clearer project structure and development commands. - Updated CHANGELOG.md to reflect recent fixes and additions. - Improved formatting in CONTRIBUTING.md for better readability. - Adjusted package.json and configuration files for consistent command structure. - Refined README.md and VISION.md for clarity and organization. - Standardized code formatting in various TypeScript files for consistency. These changes aim to enhance documentation clarity and maintainability across the repository.
9 lines
331 B
TypeScript
9 lines
331 B
TypeScript
import { v } from "convex/values";
|
|
import { internalQuery } from "./functions";
|
|
import { getGitHubProviderAccountId } from "./lib/githubIdentity";
|
|
|
|
export const getGitHubProviderAccountIdInternal = internalQuery({
|
|
args: { userId: v.id("users") },
|
|
handler: async (ctx, args) => getGitHubProviderAccountId(ctx, args.userId),
|
|
});
|