MFTSet can now be rendered as JSON!

Commit
eca05c2ddb6044ad0f49127565b268a661a3fa20
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
src/MyFitnessTracker/MFTSet.class.st
index c69a25ff..7d1567d2 100644..100644
@@ -53,6 +53,17 @@
53 53 rpe := MFTUser defaultRpe
54 54 ]
55 55
56 Added: { #category : #'as yet unclassified' }
57 Added: MFTSet >> jsonOn: aRenderer [
58 Added:
59 Added: | dict |
60 Added: dict := {
61 Added: (#reps -> reps).
62 Added: (#weight -> weight).
63 Added: (#rpe -> rpe) } asDictionary.
64 Added: dict jsonOn: aRenderer
65 Added: ]
66 Added:
56 67 { #category : #accessing }
57 68 MFTSet >> reps [
58 69