mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-28 13:22:39 +03:00
10 lines
155 B
JavaScript
10 lines
155 B
JavaScript
|
import BaseSerializer from './application';
|
||
|
|
||
|
export default BaseSerializer.extend({
|
||
|
embed: true,
|
||
|
|
||
|
include() {
|
||
|
return ['author'];
|
||
|
}
|
||
|
});
|