Module: Coordinates

Included in:
Project, User, Workgroup
Defined in:
app/models/concerns/coordinates.rb

Instance Method Summary collapse

Instance Method Details

#create_coordinatesObject

def create_avatars self.logo_url = "https://robohash.org/" + self.short_title + "?set=set4" self.banner_url = "https://robohash.org/" + self.short_title + "?set=set4" end



9
10
11
12
# File 'app/models/concerns/coordinates.rb', line 9

def create_coordinates
  self.latitude = 38.074314 + (rand * 2)
  self.longitude = -43.014136 + (rand * 2)
end