This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/models/user-action-group.js.es6
2019-11-08 14:13:35 -05:00

11 lines
187 B
JavaScript

import EmberObject from "@ember/object";
export default EmberObject.extend({
push(item) {
if (!this.items) {
this.items = [];
}
return this.items.push(item);
}
});