mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
19 lines
428 B
JavaScript
19 lines
428 B
JavaScript
import {helper} from 'ember-helper';
|
|
|
|
export function timeToSchedule(params) {
|
|
if (!params || !params.length) {
|
|
return;
|
|
}
|
|
|
|
let [ , blogTimezone] = params;
|
|
let [time] = params;
|
|
|
|
if (blogTimezone.get('isFulfilled')) {
|
|
return moment.utc(time).tz(blogTimezone.get('content')).format('DD MMM YYYY, HH:mm');
|
|
}
|
|
}
|
|
|
|
export default helper(function (params) {
|
|
return timeToSchedule(params);
|
|
});
|