mirror of
https://github.com/discourse/discourse.git
synced 2025-02-02 14:54:00 +08:00
2ae21e9c35
* DEV: Import every instance of Ember.computed function * export default for Ember.computed
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
import { equal } from "@ember/object/computed";
|
|
import RestModel from "discourse/models/rest";
|
|
|
|
export const CREATED = 0;
|
|
export const TRANSITIONED_TO = 1;
|
|
export const EDITED = 2;
|
|
|
|
export default RestModel.extend({
|
|
created: equal("reviewable_history_type", CREATED)
|
|
});
|