-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #235 from NUTFes/feature/takumi0616/234-record-add…
…-modal feat/takumi0616/234-record-add-modal
- Loading branch information
Showing
8 changed files
with
816 additions
and
288 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,29 +1,29 @@ | ||
Record.seed( :id, | ||
{ id: 1, title: 'TypeScriptで二分木を反転', content: 'test_content', homework: 'test_homework', user_id: 1}, | ||
{ id: 2, title: 'GoでFizzBuzz', content: 'test_content', homework: 'test_homework', user_id: 2, chapter_id: 2 }, | ||
{ id: 3, title: 'Reactのルーティングについての記事を読んだ', content: 'test_content', homework: 'test_homework', user_id: 3, chapter_id: 3 }, | ||
{ id: 4, title: 'TypeScriptのインターフェースを書いた', content: 'test_content', homework: 'test_homework', user_id: 4, chapter_id: 4 }, | ||
{ id: 5, title: 'TypeScriptのバックエンドツールに関する記事を読んだ', content: 'test_content', homework: 'test_homework', user_id: 1, chapter_id: 1 }, | ||
{ id: 6, title: 'Goによるオニオンアーキテクチャを実装した', content: 'test_content', homework: 'test_homework', user_id: 2, chapter_id: 2 }, | ||
{ id: 7, title: 'Reactとnode-fetchによるAPI操作', content: 'test_content', homework: 'test_homework', user_id: 3, chapter_id: 3 }, | ||
{ id: 8, title: 'Goのインターフェースを書いた', content: 'test_content', homework: 'test_homework', user_id: 4, chapter_id: 4 }, | ||
{ id: 9, title: 'WSLの環境構築', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1 }, | ||
{ id: 10, title: 'Linuxのコマンド学習', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2 }, | ||
{ id: 11, title: 'GitとGitHubについて動画学習', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3 }, | ||
{ id: 12, title: 'GitHub初期設定(SSH Keyの登録など)', content: 'test_content', homework: 'なし', user_id: 4, chapter_id: 4 }, | ||
{ id: 13, title: 'WSL上にRubyの環境構築', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1 }, | ||
{ id: 14, title: 'Rubyでメソッドと配列について学習', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2 }, | ||
{ id: 15, title: 'Rubyのif,for,while文について学習', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3 }, | ||
{ id: 16, title: 'Dockerをつかってみる', content: 'test_content', homework: 'なし', user_id: 4, chapter_id: 4 }, | ||
{ id: 17, title: 'FastAPIでToDoリスト作成', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1 }, | ||
{ id: 18, title: 'Azure for Student でインスタンス作成', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2 }, | ||
{ id: 19, title: 'AzureにSSH接続', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3 }, | ||
{ id: 20, title: 'お名前.comでドメイン取得とDNS設定', content: 'test_content', homework: 'なし', user_id: 4, chapter_id: 4 }, | ||
{ id: 21, title: 'Nginxを使ったリバースプロキシの設定', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1 }, | ||
{ id: 22, title: 'AzureにStickeeをデプロイ', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2 }, | ||
{ id: 23, title: 'Certbotを用いたSSLの設定', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3 }, | ||
{ id: 24, title: 'Softether VPNをインストール(vpnserver)', content: 'test_content', homework: 'なし', user_id: 4, chapter_id: 4 }, | ||
{ id: 25, title: 'Softether VPNをインストール(vpnclient)', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1 }, | ||
{ id: 26, title: 'NginxでVPN越しにリバースプロキシ', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2}, | ||
{ id: 27, title: 'AWSでインスタンスを作成', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3}, | ||
) | ||
{ id: 1, title: 'TypeScriptで二分木を反転', content: 'test_content', homework: 'test_homework', user_id: 1, release: true }, | ||
{ id: 2, title: 'GoでFizzBuzz', content: 'test_content', homework: 'test_homework', user_id: 2, chapter_id: 2, release: true }, | ||
{ id: 3, title: 'Reactのルーティングについての記事を読んだ', content: 'test_content', homework: 'test_homework', user_id: 3, chapter_id: 3, release: true }, | ||
{ id: 4, title: 'TypeScriptのインターフェースを書いた', content: 'test_content', homework: 'test_homework', user_id: 4, chapter_id: 4, release: true }, | ||
{ id: 5, title: 'TypeScriptのバックエンドツールに関する記事を読んだ', content: 'test_content', homework: 'test_homework', user_id: 1, chapter_id: 1, release: true }, | ||
{ id: 6, title: 'Goによるオニオンアーキテクチャを実装した', content: 'test_content', homework: 'test_homework', user_id: 2, chapter_id: 2, release: true }, | ||
{ id: 7, title: 'Reactとnode-fetchによるAPI操作', content: 'test_content', homework: 'test_homework', user_id: 3, chapter_id: 3, release: true }, | ||
{ id: 8, title: 'Goのインターフェースを書いた', content: 'test_content', homework: 'test_homework', user_id: 4, chapter_id: 4, release: true }, | ||
{ id: 9, title: 'WSLの環境構築', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1, release: true }, | ||
{ id: 10, title: 'Linuxのコマンド学習', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2, release: true }, | ||
{ id: 11, title: 'GitとGitHubについて動画学習', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3, release: true }, | ||
{ id: 12, title: 'GitHub初期設定(SSH Keyの登録など)', content: 'test_content', homework: 'なし', user_id: 4, chapter_id: 4, release: true }, | ||
{ id: 13, title: 'WSL上にRubyの環境構築', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1, release: true }, | ||
{ id: 14, title: 'Rubyでメソッドと配列について学習', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2, release: true }, | ||
{ id: 15, title: 'Rubyのif,for,while文について学習', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3, release: true }, | ||
{ id: 16, title: 'Dockerをつかってみる', content: 'test_content', homework: 'なし', user_id: 4, chapter_id: 4, release: true }, | ||
{ id: 17, title: 'FastAPIでToDoリスト作成', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1, release: true }, | ||
{ id: 18, title: 'Azure for Student でインスタンス作成', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2, release: true }, | ||
{ id: 19, title: 'AzureにSSH接続', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3, release: true }, | ||
{ id: 20, title: 'お名前.comでドメイン取得とDNS設定', content: 'test_content', homework: 'なし', user_id: 4, chapter_id: 4, release: true }, | ||
{ id: 21, title: 'Nginxを使ったリバースプロキシの設定', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1, release: true }, | ||
{ id: 22, title: 'AzureにStickeeをデプロイ', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2, release: true }, | ||
{ id: 23, title: 'Certbotを用いたSSLの設定', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3, release: true }, | ||
{ id: 24, title: 'Softether VPNをインストール(vpnserver)', content: 'test_content', homework: 'なし', user_id: 4, chapter_id: 4, release: true }, | ||
{ id: 25, title: 'Softether VPNをインストール(vpnclient)', content: 'test_content', homework: 'なし', user_id: 1, chapter_id: 1, release: true }, | ||
{ id: 26, title: 'NginxでVPN越しにリバースプロキシ', content: 'test_content', homework: 'なし', user_id: 2, chapter_id: 2, release: true }, | ||
{ id: 27, title: 'AWSでインスタンスを作成', content: 'test_content', homework: 'なし', user_id: 3, chapter_id: 3, release: true }, | ||
) |
This file contains 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.