Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-08 | Merge remote-tracking branch 'pr/241' into develop | Azul | |
2016-09-30 | changed number 2 to 3 to have three tweets shown | thea | |
2016-09-30 | added 'show more tweets'-link when more tweets are existing than displayed, ↵ | thea | |
method included to set number of tweets which should be displayed | |||
2016-09-26 | Display provider message next to tweets aswell | Azul | |
The content.html.haml was modified to pick the layout based on wether tweets are enabled or not. We need to display the provider message in both cases. | |||
2016-09-26 | Merge remote-tracking branch 'pr/239' into develop | Azul | |
2016-09-23 | Fixed typo in helper | luca-marie | |
2016-09-23 | merging develop and marie | thea | |
2016-09-23 | increase number of fetched tweets to make sure 3 most recent tweets without ↵ | luca-marie | |
RTs and @ are displayed | |||
2016-09-23 | Doc updated on how to customize avatar picture in twitter feature; update ↵ | luca-marie | |
error response messages; added 'config/customization/images' + link in 'config/initializer/customization.rb' | |||
2016-09-22 | same same but slightly different | luca-marie | |
2016-09-22 | Modified error messages | luca-marie | |
2016-09-22 | initializer/twitter.rb file unnecessary; added change in main view only if ↵ | luca-marie | |
twitter feature is set enabled == true | |||
2016-09-22 | included Theas work on error-handling \o/; changed link to twitter-account ↵ | luca-marie | |
in header; fixed erb escaping characters problem without letting evil code pass; setting customized image file 'Avatar_Pic.png' in config/custo../assets to get loaded instead of default twitter-logo | |||
2016-09-22 | customize: provider message more fine grained | Azul | |
We used to replace all of home/content - so we missed the twitter feed on the providers. Instead one should now customize home/provider_message only. | |||
2016-09-21 | finished error-handling with different error-messages for different errors. ↵ | theaamanda | |
added info that the account has to be public in Twitter-Doc | |||
2016-09-21 | included error-handling: twitter-helper includes rescue and error message ↵ | thea | |
for fourth value in array. there will always be an empty array that view (text and each - method) does not break. if empty array in view the error-message is shown. (its WIP) | |||
2016-09-13 | Merge pull request #13 from LoadToCode/marie | Marie | |
Change in code for caching | |||
2016-09-13 | Change in code for caching | luca-marie | |
2016-09-13 | Merge pull request #12 from LoadToCode/thea | theaamanda | |
Deleting not necessary files from offical PR | |||
2016-09-13 | reseted index.html.haml old state | thea | |
2016-09-13 | Added what was once deleted by mistake | luca-marie | |
2016-09-13 | Deleting one twitter img, only one is needed | luca-marie | |
2016-09-13 | Updating CSS and view Code | luca-marie | |
2016-09-13 | No need of 2nd Twitter img | luca-marie | |
2016-09-13 | Cleaning CSS &view code, updating twitter helper with develop | luca-marie | |
2016-09-09 | Merge pull request #5 from LoadToCode/thea | Marie | |
Cool! \o/ timing for twitter caching + script for invalidating token | |||
2016-09-09 | Added changes in css, view and main view file, as well as default avatar is ↵ | luca-marie | |
now set as twitter official logo (added 2 official twitter logo images; changed footer text. | |||
2016-09-09 | changed times for twitter caching | thea | |
2016-09-09 | Added changes in css, view and main view file, as well as default avatar is ↵ | luca-marie | |
now set as twitter official logo (added 2 official twitter logo images; changed footer text. | |||
2016-09-08 | Helper has caching of name and tweets included now \o/ | luca-marie | |
2016-09-07 | changed naming for tweets-method in _index and included time-checking and a ↵ | thea | |
twitter call will only be made every 15 minutes | |||
2016-09-06 | included extra methods to have the twitter call for twitter name only have ↵ | thea | |
happening at one place | |||
2016-09-06 | Merge pull request #1 from LoadToCode/marie | theaamanda | |
Updating the view and CSS, no pic and twitter handle in each tweet; | |||
2016-09-05 | resolved bug from PR #236. Included test environment to secrets-file and ↵ | thea | |
included checking wheather secrets-file exists before running code in twitter_helper | |||
2016-09-01 | Updating the view and CSS, no pic and twitter handle in each tweet; | luca-marie | |
Displaying only 3 most tweets | |||
2016-09-01 | Changes mainly on CSS 'fine tuning' and shortening the Twitter API credentials, | luca-marie | |
- only bearer token is needed to access Twitter API | |||
2016-09-01 | Adding config/config.yml file into .gitignore, cleaning up smaller typos | luca-marie | |
2016-09-01 | Small updates on method to check if twitter feed enabled | luca-marie | |
2016-09-01 | Code lives now in twitter_helper.rb | luca-marie | |
2016-09-01 | Twitter controller now as helper, some more styling in CSS, bug fix | luca-marie | |
2016-09-01 | One more gif to play with | luca-marie | |
2016-09-01 | Update with Twitter | luca-marie | |
2016-08-26 | [load] require login_format_validation in session | Azul | |
We moved it into the lib folder so it's not in an autoload path anymore. So now it needs to be required before being used. This fixes a load order issue that would cause non-deterministic failures in CI | |||
2016-08-19 | respond_to on a per controller basis | Azul | |
If you inherit respond to and call it again in your controller it will not overwrite the previous but add to it. Since we always have some exceptions from the rules it's probably easiest to be explicit in the controllers that require it themselves. | |||
2016-08-17 | bugfix: send 406 if an unexpected format is asked for | Azul | |
It used to run the action and then trigger a 500 because the template was not found. fixes !3 . | |||
2016-08-12 | [db] def database on users instead of use_database | Azul | |
use_database affects all uses of prepare_database - so also the one in tmp_database. In order to avoid that we do not use_database but just overwrite the database method itself. | |||
2016-08-12 | move temporary_user into lib - fix load issue | Azul | |
We already did the same for other concerns. The way we load models for couchrest migrations does not work well with concerns in the model directory as they will be loaded twice. | |||
2016-07-14 | [feature] restrict is_admin in the user api, to only allow querying | NavaL | |
for him/herself So that it we do not expose the is_admin property to anyone else including other admins. | |||
2016-07-14 | Merge branch 'develop' of https://github.com/leapcode/leap_web into ↵ | NavaL | |
feature/expose_admin_in_api | |||
2016-07-12 | bugfix: require local email in user model | Azul | |