Skip to content

Commit

Permalink
Discard changes to app/server/appsmith-server/src/main/java/com/appsm…
Browse files Browse the repository at this point in the history
…ith/server/controllers/SaasController.java
  • Loading branch information
sharat87 authored Nov 24, 2024
1 parent 8b21083 commit 519d95b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.appsmith.server.controllers;

import com.appsmith.server.configurations.CloudServicesConfig;
import com.appsmith.server.constants.Url;
import com.appsmith.server.controllers.ce.SaasControllerCE;
import com.appsmith.server.solutions.AuthenticationService;
Expand All @@ -13,7 +12,7 @@
@RequestMapping(Url.SAAS_URL)
public class SaasController extends SaasControllerCE {

public SaasController(AuthenticationService authenticationService, CloudServicesConfig cloudServicesConfig) {
super(authenticationService, cloudServicesConfig);
public SaasController(AuthenticationService authenticationService) {
super(authenticationService);
}
}

0 comments on commit 519d95b

Please sign in to comment.