Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
getrebuild committed Dec 23, 2024
1 parent ffe209a commit ef7c4b4
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import com.rebuild.core.support.i18n.I18nUtils;
import com.rebuild.core.support.i18n.Language;
import com.rebuild.core.support.integration.SMSender;
import com.rebuild.rbv.integration.ExternalUserAuth;
import com.rebuild.web.BaseController;
import com.rebuild.web.user.signup.LoginAction;
import com.rebuild.web.user.signup.LoginController;
Expand Down Expand Up @@ -78,11 +77,6 @@ public ModelAndView pageUser(HttpServletRequest request) {
Object feishuUser = getExternalUserId(ub.getId(), feishuAppid);
if (feishuUser != null) mv.getModelMap().put("feishuUser", feishuUser);
}
String feishuAppid = RebuildConfiguration.get(ConfigurationItem.FeishuAppId);
if (feishuAppid != null) {
String feishuUser = ExternalUserAuth.getExternalUserId(ub.getId(), feishuAppid);
if (feishuUser != null) mv.getModelMap().put("feishuUser", feishuUser);
}

return mv;
}
Expand Down

0 comments on commit ef7c4b4

Please sign in to comment.