Cleanup code & make sure it has a common code style
This commit is contained in:
@ -7,17 +7,17 @@ export default class AbstractMigrationService extends AbstractService {
|
||||
|
||||
constructor(serviceUrlKey) {
|
||||
super({
|
||||
update: '/migration/'+serviceUrlKey+'/migrate',
|
||||
update: '/migration/' + serviceUrlKey + '/migrate',
|
||||
})
|
||||
this.serviceUrlKey = serviceUrlKey
|
||||
}
|
||||
|
||||
getAuthUrl() {
|
||||
return this.getM('/migration/'+this.serviceUrlKey+'/auth')
|
||||
return this.getM('/migration/' + this.serviceUrlKey + '/auth')
|
||||
}
|
||||
|
||||
getStatus() {
|
||||
return this.getM('/migration/'+this.serviceUrlKey+'/status')
|
||||
return this.getM('/migration/' + this.serviceUrlKey + '/status')
|
||||
}
|
||||
|
||||
migrate(data) {
|
||||
|
Reference in New Issue
Block a user