diff options
| author | Shun Sakai <sorairolake@protonmail.ch> | 2023-07-27 14:31:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-27 14:31:52 +0900 |
| commit | c2370a1be631355e709c47d3b5e9469906116b84 (patch) | |
| tree | 75071c994f444f3ceea6ad0225e09b9374ca02ca /packages/frontend/src/components/MkInviteCode.stories.impl.ts | |
| parent | chore: update pnpm to 8.6.10 (diff) | |
| download | sharkey-c2370a1be631355e709c47d3b5e9469906116b84.tar.gz sharkey-c2370a1be631355e709c47d3b5e9469906116b84.tar.bz2 sharkey-c2370a1be631355e709c47d3b5e9469906116b84.zip | |
chore: 著作権とライセンスについての情報を各ファイルに追加する (#11348)
* chore: Add the SPDX information to each file
Add copyright and licensing information as defined in version 3.0 of
the REUSE Specification.
* tweak format
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'packages/frontend/src/components/MkInviteCode.stories.impl.ts')
| -rw-r--r-- | packages/frontend/src/components/MkInviteCode.stories.impl.ts | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkInviteCode.stories.impl.ts b/packages/frontend/src/components/MkInviteCode.stories.impl.ts index def0a96e6a..0127ce061b 100644 --- a/packages/frontend/src/components/MkInviteCode.stories.impl.ts +++ b/packages/frontend/src/components/MkInviteCode.stories.impl.ts @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + /* eslint-disable @typescript-eslint/explicit-function-return-type */ import { StoryObj } from '@storybook/vue3'; import { rest } from 'msw'; @@ -48,13 +53,13 @@ export const Default = { export const Used = { ...Default, args: { - invite: inviteCode(true) as any + invite: inviteCode(true) as any, }, } satisfies StoryObj<typeof MkInviteCode>; export const Expired = { ...Default, args: { - invite: inviteCode(false, true, true) as any + invite: inviteCode(false, true, true) as any, }, } satisfies StoryObj<typeof MkInviteCode>; |