Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




how to attach to task creation by breeze?

breeze

I created module with class where implemented IIssueBeforeListener, my part of code:

public Issue BeforeCreate(IssueEventArgs args)
{
    args.Entity.Title = "<***by ishym***>";          
    return args.Entity;
}

how to attach to task creation by breeze?, please help me

Ishym
· 1
Ishym
Replies (2)
helpful
0
not helpful

Check the if the originator type is an email:

if(args.Entity.OriginatorType == IssueOriginatorType.Email)
{

}

Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

no reaction, you may need something else?

public Issue BeforeCreate(IssueEventArgs args)
{
   if (args.Entity.OriginatorType == IssueOriginatorType.Email)
   {
       args.Entity.Title = "<***by ishym***>";
       args.Entity.Description = "test_test_test_test";
   }
   return args.Entity;
}

Ishym
· 1
Ishym