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

BaseService: Query params #1589

Merged
merged 10 commits into from
Jun 16, 2018
Prev Previous commit
Next Next commit
Fix syntax
  • Loading branch information
paulmelnikow committed Apr 2, 2018
commit e1c394dad2653ab65110c81067c44fa588e88e41
2 changes: 1 addition & 1 deletion services/base.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class DummyService extends BaseService {
return {
base: 'foo',
format: '([^/]+)',
capture: ['someArg']
capture: ['someArg'],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we rename someArg to namedArgA (or namedArg1).

queryParams: ['suffix'],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we rename suffix to queryParamA?

};
}
Expand Down