Skip to content

Commit

Permalink
Adding monster, jobs2careers
Browse files Browse the repository at this point in the history
  • Loading branch information
karllhughes committed Dec 30, 2017
1 parent b140172 commit 8980102
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ MAIL_DRIVER=mail

## Third party integrations (optional)
SENDGRID_API_KEY=
GA_TRACKING_ID=
CAREERBUILDER_KEY=
CAREERJET_KEY=
INDEED_KEY=
USAJOBS_KEY=
JUJU_KEY=
GA_TRACKING_ID=
ZIPRECRUITER_KEY=
J2C_ID=
J2C_PASS=
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ All Notable changes to `jobs-to-mail` will be documented in this file.

### Added
- NPM `package-lock.json` file.
- Support for Monster RSS feed and Jobs2Careers.

### Changed
- Switched Jobs Hub advert out for new email to upgrade link.
Expand Down
11 changes: 11 additions & 0 deletions config/jobboards.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
'Govt' => [],
'Ieee' => [],
'Jobinventory' => [],
'Monster' => [],
'Stackoverflow' => [],
];

Expand Down Expand Up @@ -89,5 +90,15 @@
'api_key' => env("ZIPRECRUITER_KEY"),
];
}
/**
* Jobs2Careers
* https://www2.jobs2careers.com/advertiser.php
*/
if (env("J2C_ID") && env("J2C_PASS")) {
$jobboards['J2c'] = [
'id' => env("J2C_ID"),
'pass' => env("J2C_PASS"),
];
}

return $jobboards;
Binary file removed public/img/dice.png
Binary file not shown.
Binary file added public/img/jobs2careers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/monster.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions resources/views/layouts/providers.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,21 @@
<img class="h-100" src="/img/jobinventory.png" alt="Jobinventory">
</a>
</div>
<div class="col-md-4 col-sm-12">
<a class="jobtomail-provider" href="http://www.jobs2careers.com/" title="Jobs2Careers">
<img class="h-100" src="/img/jobs2careers.png" alt="Jobs2Careers">
</a>
</div>
<div class="col-md-4 col-sm-12">
<a class="jobtomail-provider" href="http://www.juju.com/" title="Juju">
<img class="h-100" src="/img/juju.png" alt="Juju">
</a>
</div>
<div class="col-md-4 col-sm-12">
<a class="jobtomail-provider" href="https://www.monster.com/" title="Monster">
<img class="h-100" src="/img/monster.png" alt="Monster">
</a>
</div>
<div class="col-md-4 col-sm-12">
<a class="jobtomail-provider" href="https://stackoverflow.com/jobs" title="StackOverflow Jobs">
<img class="h-100" src="/img/stackoverflow.png" alt="StackOverflow">
Expand Down

0 comments on commit 8980102

Please sign in to comment.