You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Base adapter class for all OSF APIv2 endpoints"
122
+
"description": "Adapters that control how the addon communicates with the OSF"
103
123
},
104
124
{
105
125
"displayName": "authenticators",
106
126
"name": "authenticators",
107
-
"description": "Ember-simple-auth compatible authenticator based on session cookie.\n\nIntended to be used with the authorizer of the same name."
127
+
"description": "Support various forms of authentication to the OSF, such as `token` and `cookie`"
108
128
},
109
129
{
110
130
"displayName": "authorizers",
111
131
"name": "authorizers",
112
-
"description": "Ember-simple-auth compatible authorizer based on session cookie.\n\nIntended to be used with the authenticator of the same name."
132
+
"description": "Support sending authorized requests to the OSF via various means"
113
133
},
114
134
{
115
135
"displayName": "components",
116
136
"name": "components",
117
-
"description": "Lists citations for node in APA, MLA, and Chicago formats"
137
+
"description": "Reusable UI elements"
118
138
},
119
139
{
120
140
"displayName": "const",
121
-
"name": "const"
122
-
},
123
-
{
124
-
"displayName": "ember",
125
-
"name": "ember"
141
+
"name": "const",
142
+
"description": "Predefined constants that are frequently referenced"
126
143
},
127
144
{
128
145
"displayName": "ember-osf",
129
146
"name": "ember-osf",
130
-
"description": "Helper functions for asynchronous behavior"
131
-
},
132
-
{
133
-
"displayName": "ember-preprints",
134
-
"name": "ember-preprints"
147
+
"description": "Reusable ember models and components for interacting with the Open Science Framework"
135
148
},
136
149
{
137
150
"displayName": "helpers",
138
151
"name": "helpers",
139
-
"description": "Generate a unique HTML element ID for this element. Given \"someid\" for component instance 123, returns \"ember123-someid\"\n\nUseful to ensure unique IDs, eg for when component is reused in page."
152
+
"description": "Handlebars template helpers"
140
153
},
141
154
{
142
155
"displayName": "mixins",
143
156
"name": "mixins",
144
-
"description": "Analytics mixin. Provides actions that can be used in templates to track events (can send to multiple\nanalytics services)"
157
+
"description": "Reusable logic that can be added to routes, controllers, or components"
145
158
},
146
159
{
147
160
"displayName": "models",
148
161
"name": "models",
149
-
"description": "Model for OSF APIv2 citation styles"
162
+
"description": "Ember-data models for interacting with the OSF APIv2"
150
163
},
151
164
{
152
165
"displayName": "serializers",
153
166
"name": "serializers",
154
-
"description": "Base serializer class for all OSF APIv2 endpoints. Provides custom behaviors for embeds, relationships, and pagination."
167
+
"description": "Ember-data serializer logic that governs how data passes to or from the server"
155
168
},
156
169
{
157
170
"displayName": "services",
158
171
"name": "services",
159
-
"description": "Access information about the currently logged in user"
172
+
"description": "Manage behaviors that require coordinating shared state or namespaced logic across the application"
160
173
},
161
174
{
162
175
"displayName": "transforms",
163
176
"name": "transforms",
164
-
"description": "Custom string field transform that uses the `fix-special-char` utility function to clean up malformed text sent\nfrom the server. This allows string fields to be correctly and transparently used in templates without manually fixing\nthese characters for display on each use.\n\n This transform is used when `fixstring` is passed as the type parameter to the DS.attr function.\n ```app/models/score.js\n import DS from 'ember-data';\n export default DS.Model.extend({\n astring: DS.attr('fixstring'),\n });\n ```"
177
+
"description": "Control how ember-data serializes and deserializes fields"
0 commit comments