LoginSignup
0
0

More than 5 years have passed since last update.

How to connect Google Calendar with Tempo - Chrome only

Last updated at Posted at 2017-08-02

Turn google meetings into JIRA worklogs

chrome-extension://hhokjfockalnaabnhaaojdjgjodnceom/google-calendar.html
https://github.com/msolomonTMG/jira-timesheet-google-calendar-extension

JIRA プロジェクト名に数字があると 動作しない...

ex. PROJ2 → PROJZ

//github.com/msolomonTMG/jira-timesheet-google-calendar-extension/blob/master/google-calendar.js

if (event.description) {
          // check the description and the meeting title for a ticket
          if (event.description.match(/([A-Za-z]+-[0-9]+)/)) {
            var ticketInDescription = event.description.match(/([A-Za-z]+-[0-9]+)/)[0];
            ticket = ticketInDescription;
          }
          if (event.summary.match(/([A-Za-z]+-[0-9]+)/)) {
            var ticketInTitle = event.summary.match(/([A-Za-z]+-[0-9]+)/)[0];
            ticket = ticketInTitle;
          }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0