Browse Source
Feature/do not tweet on weekend (#961)
* Do not tweet on the weekend
* Update changelog
pull/962/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
2 deletions
-
CHANGELOG.md
-
apps/api/src/services/twitter-bot/twitter-bot.service.ts
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Changed the twitter bot service to rest on the weekend |
|
|
|
- Upgraded `prisma` from version `3.12.0` to `3.14.0` |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
@ -13,7 +13,7 @@ import { |
|
|
|
} from '@ghostfolio/common/helper'; |
|
|
|
import { UniqueAsset } from '@ghostfolio/common/interfaces'; |
|
|
|
import { Injectable, Logger } from '@nestjs/common'; |
|
|
|
import { isSunday } from 'date-fns'; |
|
|
|
import { isWeekend } from 'date-fns'; |
|
|
|
import * as roundTo from 'round-to'; |
|
|
|
import { TwitterApi, TwitterApiReadWrite } from 'twitter-api-v2'; |
|
|
|
|
|
|
@ -40,7 +40,7 @@ export class TwitterBotService { |
|
|
|
public async tweetFearAndGreedIndex() { |
|
|
|
if ( |
|
|
|
!this.configurationService.get('ENABLE_FEATURE_FEAR_AND_GREED_INDEX') || |
|
|
|
isSunday(new Date()) |
|
|
|
isWeekend(new Date()) |
|
|
|
) { |
|
|
|
return; |
|
|
|
} |
|
|
|