From b1813bf10cba10f7d1b7d6092b94e0c39b352ce4 Mon Sep 17 00:00:00 2001
From: Marcela Ribeiro de Oliveira <mro15@inf.ufpr.br>
Date: Mon, 3 Jul 2017 12:00:19 -0300
Subject: [PATCH] new user's profiles

---
 db/seeds.rb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/db/seeds.rb b/db/seeds.rb
index 0a4ba3ef..15db0a98 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -10,6 +10,8 @@ Role.create(name: 'student', description: 'This role represents a Student in Por
 Role.create(name: 'admin', description: 'This role represents an MEC Admin, that can perform any action.')
 Role.create(name: 'curator', description: 'This role represents a content Curator in Portal MEC.')
 Role.create(name: 'moderator', description: 'This role represents a content Moderator in Portal MEC, with less privileges than admin.')
+Role.create(name: 'supervisor', description: 'This role represents an user Supervisor in Portal MEC.')
+Role.create(name: 'editor', description: 'This role represents a content Supervisor in Portal MEC, with less privileges than admin.')
 
 # create the default admin
 User.create(
-- 
GitLab