Add syndication links for swarm and instagram

This commit is contained in:
Jonny Barnes 2017-06-17 14:34:33 +01:00
parent 02cdcbf4f1
commit cd35e6c166
3 changed files with 29 additions and 1 deletions

View file

@ -40,5 +40,12 @@ class NotesTableSeeder extends Seeder
'note' => 'Note from somehwere',
'location' => '53.499,-2.379'
]);
$noteSyndicated = App\Note::create([
'note' => 'This note has all the syndication targets',
'tweet_id' => '123456',
'facebook_url' => 'https://www.facebook.com/post/12345789',
'swarm_url' => 'https://www.swarmapp.com/checking/123456789',
'instagram_url' => 'https://www.instagra.com/p/aWsEd123Jh',
]);
}
}