Commit 5e08f8134ebb695c15bf9c8f1899efdb68c7336f

Authored by Marin Jankovski
1 parent 68590fdd

Replace context with service in development seed data.

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
db/fixtures/development/04_project.rb
... ... @@ -40,7 +40,7 @@ project_urls.each_with_index do |url, i|
40 40 description: Faker::Lorem.sentence
41 41 }
42 42  
43   - project = Projects::CreateContext.new(User.first, params).execute
  43 + project = Projects::CreateService.new(User.first, params).execute
44 44  
45 45 if project.valid?
46 46 print '.'
... ...