Skip to content

Commit

Permalink
TODOを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyatea committed Nov 28, 2024
1 parent eb69775 commit 5d7acbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/server/api/endpoints/i.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
const isSecure = token == null;

const now = new Date();
const today = `${now.getFullYear()}/${now.getMonth() + 1}/${now.getDate()}`;
const today = `${now.getFullYear()}/${now.getMonth() + 1}/${now.getDate()}`; //TODO: 日付変更の時間をサーバー管理者が設定できるように

let todayGetPoints = 0;
// 渡ってきている user はキャッシュされていて古い可能性があるので改めて取得
Expand Down

0 comments on commit 5d7acbc

Please sign in to comment.