alpha
Login
or
Join now
dunkirk.sh
/
smokie
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
bug: fix repo link and demo link keys
author
Kieran Klukas
date
1 year ago
(Apr 20, 2025, 2:06 PM -0400)
commit
f3369747
f336974701ae3de48c2c7bc36def2eb49af8a003
parent
4c7b385b
4c7b385b570b2a3d5fd4838f9d1e99576e754e23
+2
-5
1 changed file
Expand all
Collapse all
Unified
Split
src
features
takes
handlers
settings.ts
+2
-5
src/features/takes/handlers/settings.ts
Reviewed
···
1
1
-
import type { UploadedFile } from "slack-edge";
2
1
import { slackApp, slackClient } from "../../../index";
3
2
import { db } from "../../../libs/db";
4
3
import { eq } from "drizzle-orm";
5
4
import { users as usersTable } from "../../../libs/schema";
6
5
import {
7
7
-
getHackatimeApiUrl,
8
6
getHackatimeName,
9
9
-
getHackatimeVersion,
10
7
HACKATIME_VERSIONS,
11
8
type HackatimeVersion,
12
9
} from "../../../libs/hackatime";
···
218
215
projectDescription: values.project_description
219
216
?.project_description_input?.value as string,
220
217
projectBannerUrl,
221
221
-
repoLink: values.project_link?.repo_link?.value as
218
218
+
repoLink: values.repo_link?.repo_link_input?.value as
222
219
| string
223
220
| undefined,
224
224
-
demoLink: values.project_link?.demo_link?.value as
221
221
+
demoLink: values.demo_link?.demo_link_input?.value as
225
222
| string
226
223
| undefined,
227
224
hackatimeVersion,