core/app/services/spree/seeds/roles.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
module Spree
  module Seeds
    class Roles
      prepend Spree::ServiceModule::Base

      def call
        Spree::Role.where(name: 'admin').first_or_create!
      end
    end
  end
end