Hasibul-
Hasibul-

Reputation: 1412

Meteor job collection should NOT run on weekends (sat/sun)

I use this in my job-collection

later.parse.text('at 3:15 pm on Mon,Tues,Weds,Thurs and Fri');

what is the right solution

Upvotes: -2

Views: 50

Answers (2)

jspcal
jspcal

Reputation: 51924

In addition you can do

later.parse.recur().on('15:45').time().onWeekday()

Upvotes: 2

Travis M
Travis M

Reputation: 363

An alternative solution per the docs

later.parse.text('at 3:15 pm every weekday');

Upvotes: 2

Related Questions