You need to sign in to do that
Don't have an account?
Vidys Sagar
i need test class for this class
@RestResource(urlMapping='/getlogo/*')
Global with sharing class GetLogo {
@HttpGet
Global static String getCompanyLogo()
{
StaticResource sr = [SELECT Id, Body FROM StaticResource WHERE Name = 'DNOWLogo' LIMIT 1];
String body = sr.Body.toString();
return body;
}
}
Global with sharing class GetLogo {
@HttpGet
Global static String getCompanyLogo()
{
StaticResource sr = [SELECT Id, Body FROM StaticResource WHERE Name = 'DNOWLogo' LIMIT 1];
String body = sr.Body.toString();
return body;
}
}