Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fix/expiry time access token #58

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open

Feature/fix/expiry time access token #58

wants to merge 18 commits into from

Commits on Oct 18, 2018

  1. Check whether array has at least two elements before accessing the in…

    …dex 1
    
    This allows to have an editorconfig with insert_final_new_line and prevents
    a nasty bug to track down.
    Jürgen Ratzenböck committed Oct 18, 2018
    Configuration menu
    Copy the full SHA
    15fd966 View commit details
    Browse the repository at this point in the history
  2. Update package descriptions in composer.json

    Jürgen Ratzenböck committed Oct 18, 2018
    Configuration menu
    Copy the full SHA
    b3a303c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1 from jobs-at/feature/extend-array-access-check

    Feature/extend array access check
    jratzenboeck authored Oct 18, 2018
    Configuration menu
    Copy the full SHA
    09718d3 View commit details
    Browse the repository at this point in the history
  4. Make setConfigValues methods static to prevent an exception when call…

    …ing them
    
    PHP throws an exception when you call non-static methods from within a static
    method. This was done until this change.
    Jürgen Ratzenböck committed Oct 18, 2018
    Configuration menu
    Copy the full SHA
    e225f12 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2018

  1. Interpret sandbox env flag as boolean

    The sandbox flag comes into the zoho api as boolean flag from our config
    file but was interpreted by the official zcrm php sdk as string ("true" or "false")
    which makes no sense. Thus, interpet it as boolean value to decide whether to use
    sandbox or production.
    Jürgen Ratzenböck committed Oct 30, 2018
    Configuration menu
    Copy the full SHA
    c8490f9 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2018

  1. Merge pull request #2 from jobs-at/feature/fix-sandbox-api-request

    Interpret sandbox env flag as boolean
    jratzenboeck authored Oct 31, 2018
    Configuration menu
    Copy the full SHA
    b17253d View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2019

  1. Remove array filter to allow syncing of null values

    Roman Sumereder committed Jul 11, 2019
    Configuration menu
    Copy the full SHA
    5f79bf0 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2019

  1. Merge pull request #3 from jobs-at/feature/fix-record-as-json

    Remove array filter to allow syncing of null values
    romansum authored Aug 8, 2019
    Configuration menu
    Copy the full SHA
    c431fef View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2019

  1. Bugfix Check if is array before calling the count function

    Roman Sumereder committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    7f0eebf View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2019

  1. Merge pull request #4 from jobs-at/bugfix/fix-count-on-null

    Bugfix Check if is array before calling the count function
    romansum authored Dec 5, 2019
    Configuration menu
    Copy the full SHA
    9616044 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2020

  1. JOBS-526 Replaces deprecated offset access syntax curly braces with s…

    …quare ones for PHP 7.4
    Matthias Balota committed Feb 12, 2020
    Configuration menu
    Copy the full SHA
    70c1abd View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2020

  1. JOBS-526 Add gitignore

    Jürgen Ratzenböck committed Feb 14, 2020
    Configuration menu
    Copy the full SHA
    1dd033e View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2020

  1. Merge pull request #5 from jobs-at/feature/JOBS-526/php-7-4

    JOBS-526 Replaces deprecated offset access syntax
    jratzenboeck authored Apr 27, 2020
    Configuration menu
    Copy the full SHA
    b005604 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2020

  1. JOBS-845 Zoho CRM not call zoho API

    fds
    Marc Melchor committed Jul 16, 2020
    Configuration menu
    Copy the full SHA
    45bc957 View commit details
    Browse the repository at this point in the history
  2. JOBS-870 Set back the Logger log path

    Marc Melchor committed Jul 16, 2020
    Configuration menu
    Copy the full SHA
    6e75fdb View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2020

  1. JOBS-845 Replace Congif by import

    Marc Melchor committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    d0d53d1 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2020

  1. Merge pull request #6 from jobs-at/bugfix/JOBS-845/zoho-crm-not-call-…

    …zoho-api
    
    Bugfix/jobs 845/zoho crm not call zoho api
    marcmelchor authored Jul 22, 2020
    Configuration menu
    Copy the full SHA
    f44203c View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2020

  1. FIX Convert expiry duration to milliseconds before adding to expiry time

    The expiry time is returned in seconds from the refresh token call but
    the current timestamp is retrieved in milliseconds. Thus we have to convert
    the duration first to milliseconds before adding it to the final expiry time.
    Jürgen Ratzenböck committed Aug 31, 2020
    Configuration menu
    Copy the full SHA
    045064d View commit details
    Browse the repository at this point in the history