Skip to content

Commit

Permalink
use fetchAndProcessRlProjects
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadPCh committed Aug 28, 2024
1 parent 1520ff9 commit ab484b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/features/import-projects/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ import { fetchAndProcessGivethProjects } from "./giveth/index";
import { fetchAndProcessRpgf3Projects } from "./rpgf";
import { fetchAndProcessGitcoinProjects } from "./gitcoin";
import { fetchRFProjectsByRound } from "./rf";
import { fetchAndProcessRlProjects } from "./retroList";

export const task = async () => {
console.log("Importing Projects", new Date());
await fetchAndProcessGivethProjects();
await fetchAndProcessGitcoinProjects();
// fetchAndProcessRpgf3Projects();
await fetchRFProjectsByRound(4);
await fetchRFProjectsByRound(5);
// await fetchRFProjectsByRound(5); //TODO: It will fill on 20th Sep
await fetchAndProcessRlProjects(5);
};

export const importProjects = async () => {
Expand Down

0 comments on commit ab484b1

Please sign in to comment.