app/models/actions/get_action.rb in artfully_ose-1.1.0 vs app/models/actions/get_action.rb in artfully_ose-1.2.0.alpha.1
- old
+ new
@@ -1,13 +1,19 @@
class GetAction < Action
+ include ImmutableAction
+
def subtype
"Purchase"
end
def action_type
"Get"
end
def verb
- "purchased"
+ "bought"
+ end
+
+ def self.subtypes
+ []
end
end
\ No newline at end of file