Renamed lib to includes

This commit is contained in:
Justin Foell
2019-04-01 15:17:27 -05:00
parent 3ce9d26e88
commit 2265e73f83
26 changed files with 6 additions and 6 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
/**
* This functionality is deprecated and will be shut down on October 15, 2019
*
* @see https://developers.strava.com/docs/oauth-updates/#migration-instructions
*/
/**
* AuthForever Class
*
* @since 2.0.0
*/
class WPStrava_AuthForever extends WPStrava_Auth {
protected function get_authorize_url( $client_id ) {
return add_query_arg(
array(
'client_id' => $client_id,
'redirect_uri' => $this->get_redirect_param(),
'approval_prompt' => 'force',
),
$this->auth_url
);
}
}