Skip to content

Swf 11 recent transactions #9

Merged
merged 7 commits into from Mar 26, 2019

Commits on Mar 12, 2019

  1. SWF-14 added .swiftlint.yml

    - disabled rules for silly things like line length and short identifier names
    - don’t run swiftlint in our pods directory, since we shouldn’t be changing anything there
    ahm11003 committed Mar 12, 2019
    Copy the full SHA
    e05e55c View commit details
    Browse the repository at this point in the history
  2. SWF-14 remove tags to disable swiftlint warnings

    - these can be removed as a result of adding .swiftlint.yml
    ahm11003 committed Mar 12, 2019
    Copy the full SHA
    4217f75 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #7 from rrk12005/SWF-14-install-swiftlint

    Swf 14 swiftlint improvements
    ahm11003 committed Mar 12, 2019
    Copy the full SHA
    59bbe09 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2019

  1. Copy the full SHA
    d0b53dc View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2019

  1. SWF-11 Create new classes to support transaction display

    - `TransactionsInterfactController` will hold a table of recent transactions
    - `TransactionCell` provides a model for our table cell
    ahm11003 committed Mar 21, 2019
    Copy the full SHA
    1b6bc34 View commit details
    Browse the repository at this point in the history
  2. SWF-11 Storyboard changes

    - Added TransactionsInterfaceController
    - In order to have a page based navigation allowing swipe between Account Details and Transactions, it was necessary to change the segue from the Accounts Table to “modal” type
    ahm11003 committed Mar 21, 2019
    Copy the full SHA
    7e8a9ce View commit details
    Browse the repository at this point in the history
  3. SWF-11 Change context for segue

    - As a result of the change to modal presentation, the function we must override has changed
    - Instead of returning the context for the next interface controller, we return an array of contexts, each corresponding to the interface controllers in the order they appear in the navigation stack (Account details is first, transactions is now second)
    - once web service is set up, transactions should be passed to TransactionsInterfactController from this function
    ahm11003 committed Mar 21, 2019
    Copy the full SHA
    bb5623c View commit details
    Browse the repository at this point in the history