Example #1
0
      }, (rejection) => {
        errors.push({
          thread: thread,
          errors: [rejection.detail]
        });

        countdown.count();
      });
Example #2
0
 ajax.patch(thread.api.index, ops).then((data) => {
   this.props.updateThread(data);
   countdown.count();
 }, (rejection) => {
Example #3
0
 ajax.delete(thread.api.index).then((data) => {
   this.props.freezeThread(thread.id);
   this.props.deleteThread(thread);
   countdown.count();
 }, (rejection) => {