9 lines
141 B
Ruby
9 lines
141 B
Ruby
module UpdateCampaignGiftOption
|
|
|
|
def self.update gift_option, params
|
|
gift_option.update_attributes params
|
|
return gift_option
|
|
end
|
|
|
|
end
|
|
|