Fetch the collection of roles that are available for this kit.
44 def get_roles
45 self.log.info "Fetching roles from the current role package"
46
47 unless Ravn::Tactical::BoltPackage.exists?
48 return []
49 end
50
51 package = Ravn::Tactical::BoltPackage.load
52
53
54
55 present_collection( package.roles )
56 end