mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
12 lines
347 B
Ruby
12 lines
347 B
Ruby
module SponsorsHelper
|
|
# returns the url to be used for logo on basis of sponsorship level position
|
|
def get_logo(sponsor)
|
|
if sponsor.sponsorship_level.position == 1
|
|
sponsor.picture.first.url
|
|
elsif sponsor.sponsorship_level.position == 2
|
|
sponsor.picture.second.url
|
|
else
|
|
sponsor.picture.others.url
|
|
end
|
|
end
|
|
end
|