This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| li:has(svg[class*=fa-bahai]) { | |
| display: none !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 188.68.178.102 |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?><!DOCTYPE yml_catalog SYSTEM "shops.dtd"><yml_catalog date="2024-08-28T10:23:09+03:00"><shop><name>Лазурит</name><company>ТД "Лазурит"</company><url>https://lazurit.com</url><platform>BSM/Yandex/Market</platform><version>2.3.4</version><currencies><currency id="RUR" rate="1"/></currencies><categories><category id="852">Детская мебель</category><category id="854">Мебель для спальни</category><category id="855" parentId="854">Комплекты для спальни</category><category id="635">Кровати и матрасы</category><category id="648" parentId="635">Кровати</category><category id="651" parentId="635">Односпальные кровати</category><category id="653" parentId="635">Матрасы</category><category id="656" parentId="635">Наматрасники и топперы</category><category id="770">Текстиль</category><category id="1900" parentId="770">Одеяла</category><category id="1899" parentId="770">Подушки</category><category id="829" parentId="770">Чехлы для матрасов</category><category id="1901" parentId="770">Де |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public String registerUser(UserRegistrationFormBean userRegistrationFormBean, | |
| RequestContext requestContext, | |
| ExternalContext externalContext) { | |
| try { | |
| Locale userLocale = requestContext.getExternalContext().getLocale(); | |
| this.userService.createNewUser(userRegistrationFormBean, userLocale, Constants.SYSTEM_USER_ID); | |
| String emailAddress = userRegistrationFormBean.getChooseEmailAddressFormBean().getEmailAddress(); | |
| String password = userRegistrationFormBean.getChoosePasswordFormBean().getPassword(); | |
| doAutoLogin(emailAddress, password, (HttpServletRequest) externalContext.getNativeRequest()); |