Skip to content

Commit

Permalink
Fix donation link
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed Jun 15, 2024
1 parent eedf1f6 commit fad2b92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Controller/PublicController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class PublicController extends AbstractController
{
public const CACHE_TTL = 3600;
public const DONATION_URL = 'https://securelb.imodules.com/s/1341/utaa/form/interior_form.aspx?sid=1341&gid=5&pgid=4197&cid=6250&dids=2802&bledit=1';
public const DONATION_URL = 'https://give.utm.edu/campaigns/42936/donations/new?designation=PACER_03';
public const PACER_SITE_FEED = 'http://www.thepacer.net/wp-json/wp/v2/posts?_embed&per_page=5';

#[Route(path: '/', name: 'home')]
Expand Down
2 changes: 1 addition & 1 deletion tests/Controller/PublicControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function testDonate()
$client = static::createClient();
$client->request('GET', '/donate');
$this->assertResponseRedirects(
'https://securelb.imodules.com/s/1341/utaa/form/interior_form.aspx?sid=1341&gid=5&pgid=4197&cid=6250&dids=2802&bledit=1',
'https://give.utm.edu/campaigns/42936/donations/new?designation=PACER_03',
302
);
}
Expand Down

0 comments on commit fad2b92

Please sign in to comment.