Hi @Theo_Pendle That was one thing for sure when I checked now. The other thing was the URL scheme, I changed the scheme from https://vimeo.com/* to https://vimeo.com/.* . I'm quite not sure the significance of this dot.Thanks
Hi @ArpitVarshney This is the pom file, I'm not quite getting what's its mentioned by releaseRepository-URL. <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM...
For the models folder the permission was set to deny for jcr:read and for inside one folder set the permission as allow. But it ain't showing up. The rule is to deny all and allow specific right!
Hi Gaurav. I have the said access privileges, but on trying to access https://console.adobe.io/integrations it's redirecting to https://console.adobe.io/home. What might be the issue?
In the code editor for day use the following logic, function getDates(numberOfDays) {var dates = [];var toDates;for (var i = 1; i <= numberOfDays; i++){if (i < 10) {toDates = "0" + i + "=0" + i;dates.push(toDates);} else {toDates = i + "=" + i;dates.push(toDates);}}return dates;}if (birthMonth.value...