-
Notifications
You must be signed in to change notification settings - Fork 0
Get all projects with GET /projects
#70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c40ec72
get all path
denniwang e565a09
Update apps/backend/lambdas/projects/test/crud.test.ts
denniwang 46a7f5b
Update apps/backend/lambdas/projects/package.json
denniwang 1ea3c97
Merge branch 'main' into 59-get-all-projects
denniwang 6014fd5
Merge branch 'main' into 59-get-all-projects
denniwang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| /** | ||
| * This file was generated by kysely-codegen. | ||
| * Please do not edit it manually. | ||
| */ | ||
|
|
||
| import type { ColumnType } from "kysely"; | ||
|
|
||
| export type Generated<T> = T extends ColumnType<infer S, infer I, infer U> | ||
| ? ColumnType<S, I | undefined, U> | ||
| : ColumnType<T, T | undefined, T>; | ||
|
|
||
| export type Numeric = ColumnType<string, number | string, number | string>; | ||
|
|
||
| export type Timestamp = ColumnType<Date, Date | string, Date | string>; | ||
|
|
||
| export interface BranchDonors { | ||
| contact_email: string | null; | ||
| contact_name: string | null; | ||
| created_at: Generated<Timestamp | null>; | ||
| donor_id: Generated<number>; | ||
| organization: string; | ||
| } | ||
|
|
||
| export interface BranchExpenditures { | ||
| amount: Numeric; | ||
| category: string | null; | ||
| created_at: Generated<Timestamp | null>; | ||
| description: string | null; | ||
| entered_by: number | null; | ||
| expenditure_id: Generated<number>; | ||
| project_id: number; | ||
| spent_on: Generated<Timestamp>; | ||
| } | ||
|
|
||
| export interface BranchProjectDonations { | ||
| amount: Numeric; | ||
| donated_at: Generated<Timestamp | null>; | ||
| donation_id: Generated<number>; | ||
| donor_id: number; | ||
| project_id: number; | ||
| } | ||
|
|
||
| export interface BranchProjectMemberships { | ||
| hours: Numeric | null; | ||
| membership_id: Generated<number>; | ||
| project_id: number; | ||
| role: string; | ||
| start_date: Timestamp | null; | ||
| user_id: number; | ||
| } | ||
|
|
||
| export interface BranchProjects { | ||
| created_at: Generated<Timestamp | null>; | ||
| currency: Generated<string | null>; | ||
| end_date: Timestamp | null; | ||
| name: string; | ||
| project_id: Generated<number>; | ||
| start_date: Timestamp | null; | ||
| total_budget: Numeric | null; | ||
| } | ||
|
|
||
| export interface BranchUsers { | ||
| created_at: Generated<Timestamp | null>; | ||
| email: string; | ||
| is_admin: Generated<boolean | null>; | ||
| name: string; | ||
| user_id: Generated<number>; | ||
| } | ||
|
|
||
| export interface DB { | ||
| "branch.donors": BranchDonors; | ||
| "branch.expenditures": BranchExpenditures; | ||
| "branch.project_donations": BranchProjectDonations; | ||
| "branch.project_memberships": BranchProjectMemberships; | ||
| "branch.projects": BranchProjects; | ||
| "branch.users": BranchUsers; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| import { Kysely, PostgresDialect } from 'kysely' | ||
| import { Pool } from 'pg' | ||
| import type { DB } from './db-types' | ||
|
|
||
|
|
||
| const db = new Kysely<DB>({ | ||
| dialect: new PostgresDialect({ | ||
| pool: new Pool({ | ||
| host: process.env.DB_HOST ?? 'localhost', | ||
| port: Number(process.env.DB_PORT ?? 5432), | ||
| user: process.env.DB_USER ?? 'branch_dev', | ||
| password: process.env.DB_PASSWORD ?? 'password', | ||
| database: process.env.DB_NAME ?? 'branch_db', | ||
| ssl: false, | ||
| }), | ||
| }), | ||
| }) | ||
|
|
||
| export default db |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.