Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: method for Projects class to update JWT expiration #8

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
linting restored
  • Loading branch information
BadgerBloke committed Sep 13, 2023
commit 24727c774e07937081baf2510dffb1eae12db6cc
2 changes: 1 addition & 1 deletion src/services/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { UploadProgress, Payload } from '../client';

export class Project extends Service {

constructor(client: Client)
constructor(client: Client)
{
super(client);
}
Expand Down
2 changes: 1 addition & 1 deletion src/services/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { UploadProgress, Payload } from '../client';

export class Projects extends Service {

constructor(client: Client)
constructor(client: Client)
{
super(client);
}
Expand Down